Suppose I have a matrix A(590x133). How should I find slope of each row of the matrix A

답변 (1개)

You could use that function (or many other funs) to get your slope,but u probably could not get all the slopes at one instance. use a loop to help yourself(you also need to provide a corrisponding vector with respect to each row in ur matrix A):
A,t
[dim1, dim2]=size(A);
slope=[];
for i=1:dim1
[s1 slope_tmp s2]=regression(t,A(i,:));
slope=[slope slope_tmp];
end
slope

카테고리

도움말 센터File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

제품

태그

질문:

2013년 10월 8일

댓글:

2013년 10월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by