Feeds
已回答
how to find range of elements in each row of a matrix
You are going to find the range of elements in A: mins=min(A,[],2) %Gives you the minimum in each row. maxs=max(A,[],2) %G...
how to find range of elements in each row of a matrix
You are going to find the range of elements in A: mins=min(A,[],2) %Gives you the minimum in each row. maxs=max(A,[],2) %G...
7 years 前 | 0