Feeds
回答済み
To find maximum value of any matrix without using built-in max()
I tried this and it works! @Guillaume @Stephen Cobeldick [r,c]=size(x); max_value=x(1,1); for k=1:r for i=1:c if...
To find maximum value of any matrix without using built-in max()
I tried this and it works! @Guillaume @Stephen Cobeldick [r,c]=size(x); max_value=x(1,1); for k=1:r for i=1:c if...
7年以上 前 | 0
質問
To find maximum value of any matrix without using built-in max()
function [max_value, index] = mymax(x) [r,c]=size(x); max_value_row=x(1,1) max_value_col=x(1,1) for i=1:c if x(1,i)>...
7年以上 前 | 3 件の回答 | 0
3
回答質問
LOOP!!! Please explain to me !!
<</matlabcentral/answers/uploaded_files/130472/loop.PNG>>
7年以上 前 | 0 件の回答 | 0
