Sorting elements according to an array
显示 更早的评论
I will try my best to phrase this question, hope it makes sense
I have 2 arrays, DATA which has useful data and SCALE which has the scale where I am fitting the data to.
DATA has numbers from 1-100 in random order, and SCALE has distinct intervals of tens from 1-100, i.e. 1,10,20,30...90,100
My goal is the write a code which clumps the elements from DATA to SCALE to do calulations such as SCALE-DATA (for example, 36 is the DATA element, the SCALE element should be 40 and it would be 40-36)
example - 7 will be rounded up to 10, and 23 will be rounded down to 20.
I understand the commands ciel and floor, however I am not sure what is the most efficient way to match the rounded data to the scale?
采纳的回答
I am not certain what you want.
Try this:
DATA = randi([1 100], 25, 1); % Create DATA
SCALE = 10*round(DATA/10).*(DATA>=10) + 10*round(DATA/10).*(DATA<10);
Out = [DATA, SCALE];
.
10 个评论
Hi StarStrider, thanks as always for the reply.
This is very close to what I want, but my scale is already pre-defined. and I want to match the rounded ones to the SCALE.
Your code creates the SCALE vector according to the DATA.
SCALE DATA
10 24~20 (goes to the second column)
20 ...
30 ...
40 ...
50 ...
Appreciate the help, as always!
My pleasure!
I am still not certain that I understand what you want, so I will give it another shot:
Out = sortrows([SCALE DATA],1)
the rest of the code is unchanged.
I do not understand this: 24~20 or what you want to do with it. It is not likely that it will work as a single column in MATLAB.
Thanks Star Strider, I am sorry for not being articulate enough. I believe in your code -
SCALE = 10*round(DATA/10).*(DATA>=10) + 10*round(DATA/10).*(DATA<10)
- makes the SCALE array according to the DATA array, however SCALE is predefined before the elements of DATA are introduced. Hope that helps sort it out.
Basically, DATA elements get rounded up or down to get close to an induvidual element of SCALE and gets sorted.
So there should be a line that says
SCALE = linspace(0,100,10);
I am completely lost.
I will delete my Answer in a few minutes.
Oh wow, I am sorry Star Strider. Let me try to rephrase it again
Again, since I lost my command of the English language.
I have points scattered on the x axis, and I want the points to rounded up to the nearest division.

Your code does exactly what I want, however the scale is defined from the data input. And with different data sets the scale changes. My scale is predefined and is indepenndent of the data set.
SCALE = 10*round(DATA/10).*(DATA>=10) + 10*round(DATA/10).*(DATA<10);
Something along the lines of this, but this is what I can't figure out
%predefined
DATA = [8 17 21 23 36]';
SCALE = [10 20 30 40]';
rounddata = round(DATA);
%compare with SCALE to see where it belongs and output
Out = [correctDATA, SCALE];
Try this:
DATA = randi([1 100], 1, 25); % Create ‘DATA’
SCALEfcn = @(x) 10*round(x/10).*(x>=10) + 10*round(x/10).*(x<10);
SCALE = linspace(0,100,11);
for k = 1:numel(SCALE)-1
Out{k,:} = [SCALE(k) DATA((SCALEfcn(DATA) >= SCALE(k)) & (SCALEfcn(DATA) < SCALE(k+1)))];
end
I still do not understand what you want. This sort of histogram approach is as close as I can get.
Experiment with it to get different results.
Thank you for your time, I really appreciate it. I can tinker around with the helpful lines you have given me. I am glad to hear from you during these uncertain times. As always, thank you for the help Star Strider. Always a blessing to have you in this forum!
As always, my pleasure!
Thank you very much for your compliments and sentiments!
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!选择网站
选择网站以获取翻译的可用内容,以及查看当地活动和优惠。根据您的位置,我们建议您选择:。
您也可以从以下列表中选择网站:
如何获得最佳网站性能
选择中国网站(中文或英文)以获得最佳网站性能。其他 MathWorks 国家/地区网站并未针对您所在位置的访问进行优化。
美洲
- América Latina (Español)
- Canada (English)
- United States (English)
欧洲
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
