How to to write a code to my n*1 matrix into differnt submatrices?
Ältere Kommentare anzeigen
Hi guys, I have N*1 Index matrix with N rows. Where N varies for different files. My matrix consists N number of channels. I need to copy my channels into one group when difference between my channel is greater than one.I need to make differnt groups whenever differnce between the channels is greater than one. I tried to use Magic function and find function to save into different groups. When I use FIND function, I can find channels which difference are greater than one and less than one. I am unable to copy them into differnt groups.
Can anyone help me with this problem
Cheers,
Sudheer
Akzeptierte Antwort
Weitere Antworten (2)
Jan
am 3 Mär. 2011
3 Stimmen
It sounds like you need HIST or HISTC, especially the 2nd output argument.
Paulo Silva
am 3 Mär. 2011
a=[164 165 166 167 175 176 177 189 190 195 196]';
b=diff(a); %find differences
idx=find(b>1); %find their indexes
idx=[idx;numel(a)]; %add the last value as index
cel=cell(1,numel(idx)); %make a cell to hold the groups
sv=1; %start value
for f=1:numel(idx)
cel{f}=a(sv:idx(f)); %take each part of a into a group
sv=idx(f)+1; %make the next start value
end
bar(cellfun(@mean,cel))
4 Kommentare
Matt Fig
am 3 Mär. 2011
This is a better solution, only calling FIND once and preserving the order.
You could get sv directly by:
idx = find(diff(A)~=1);
idx = [idx;length(A)];
sv = [1; idx(1:end-1)+1];
+1 vote
Paulo Silva
am 3 Mär. 2011
Thanks Matt, your tips are always welcome :)
sudheer kumar reddy
am 3 Mär. 2011
Paulo Silva
am 3 Mär. 2011
cellfun(@mean,cel)
Kategorien
Mehr zu Resizing and Reshaping Matrices finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!