필터 지우기
필터 지우기

finding max for each 3 columns

조회 수: 2 (최근 30일)
Neesha
Neesha 2015년 11월 4일
댓글: Image Analyst 2015년 11월 5일
Hi All,
I have a dataset something similar to following
Name Location Nickname saleCost
rest1 east Reast1 [5, 7, 9 , 2, 5, 1, 9, 11, 1]
rest4 south Rsouth4 [12, 9, 2, 3, 5, 10, 11, 4, 4]
rest3 east Reast3 [20, 2, 2, 3, 20, 30, 1, 3, 7]
rest9 west Rwest9 [1, 9, 3, 33, 22, 10, 6, 6, 8]
Note that saleCost is a dataset as well and as number of columns which are multiple of 3.
I want to find max for every 3 columns so my resultant dataset is as follow
Name Location Nickname saleCostMax
rest1 east Reast1 [9, 9, 9, 5, 9, 11, 11, 11, 1]
rest4 south Rsouth4 [12, 9, 5, 10, 11, 11, 11, 4, 4]
rest3 east Reast3 [20, 3, 20, 30, 30, 30, 7, 7, 7]
rest9 west Rwest9 [9, 33, 33, 33, 22, 10, 8, 8, 8]
ANy other way so that I do not have to use for loop? WHat are my options?
Thanks
  댓글 수: 2
Geoff Hayes
Geoff Hayes 2015년 11월 4일
Neesha - is your data set a cell array or something else? Why don't you want to use a for loop?
Neesha
Neesha 2015년 11월 4일
isn't for loop time consuming and not the best approach? I will have 100s of lines

댓글을 달려면 로그인하십시오.

채택된 답변

Image Analyst
Image Analyst 2015년 11월 4일
If you have the Image Processing Toolbox, you can go down row by row and call imdilate() to get a moving max:
thisRow = [5, 7, 9 , 2, 5, 1, 9, 11, 1]
newRow = imdilate(thisRow, [1,1,1])
% Crop off the first element and tack on the last element
newRow = [newRow(2:end), thisRow(end)]
In the command window:
thisRow =
5 7 9 2 5 1 9 11 1
newRow =
7 9 9 9 5 9 11 11 11
newRow =
9 9 9 5 9 11 11 11 1
  댓글 수: 4
Neesha
Neesha 2015년 11월 5일
ok makes sense. I tried and this is what i get. It is not correct output
thisRow = [5, 7, 9 , 2, 5, 1, 9, 11, 1]
newRow = imdilate(thisRow, [1,1,1,1,1,1])
% Crop off the first element and tack on the last element
newRow = [newRow(2:end), thisRow(end)]
thisRow =
5 7 9 2 5 1 9 11 1
newRow =
9 9 9 9 9 11 11 11 11
newRow =
9 9 9 9 11 11 11 11 1
Image Analyst
Image Analyst 2015년 11월 5일
What would you want? A sliding window of 6 only fits completely in there in 4 spots. Do you want 4 output numbers, or do you want the window to slide off on both ends?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Web Services에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by