how can i split mtrix to three ?
이전 댓글 표시
hi
i have matrix m=153*71 i need to extract from it 3 matrices with dinsion 51*71 ?
답변 (3개)
Here is one possible way, if A is your matrix:
A1 = A(1:51,:);
A2 = A(52:102,:);
A3 = A(103:153,:);
Image Analyst
2022년 1월 16일
0 개 추천
Here is a similar question and answer:
댓글 수: 2
RADWAN A F ZEYADI
2022년 1월 19일
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
2022년 1월 19일
0 개 추천
댓글 수: 3
Image Analyst
2022년 1월 19일
I think it's hard or impossible to get 95% confidence limits when you have only 2 data points for each time point. You'd need dozens to get some good statistics. Then you could plot envelope curves where you have a 95% confidence that the curve will be between the two envelope curves.
RADWAN A F ZEYADI
2022년 1월 19일
Image Analyst
2022년 1월 19일
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.
카테고리
도움말 센터 및 File Exchange에서 Half-Normal Distribution에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

