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
