how can i split mtrix to three ?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
hi
i have matrix m=153*71 i need to extract from it 3 matrices with dinsion 51*71 ?
0 Kommentare
Antworten (3)
Image Analyst
am 16 Jan. 2022
Here is a similar question and answer:
2 Kommentare
Image Analyst
am 19 Jan. 2022
Sorry that's not true. Look:
m = randi(99, 153, 5)
m1=m(1:51,:)
m2=m(52:103,:)
m3=m(103:153,:)
You can see that obviously they are not the same. You must have done something else to overwrite all the matrices with m.
RADWAN A F ZEYADI
am 19 Jan. 2022
3 Kommentare
Image Analyst
am 19 Jan. 2022
So you have either 51 or 71 curves? If so, for each time point you can pass those values into fitdist() to get the distribution and CDF from which you can get the 2.5% and 97.5% values of the CDF which enclose 95% of the values.
If you can't figure it out, attach the matrix in a .mat file.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!