How do I get this to display the maximum value of an array?

조회 수: 1 (최근 30일)
Cole Bromfield
Cole Bromfield 2020년 1월 16일
답변: VBBV 2024년 3월 21일
I wrote this function:
function max=maxval(x)
a=1;
N=length(x);
for j=x(1:N)
if x(j)>a
a=x(j);
else
a=a;
end
end
max=a;
end
But when I try to use it, nothing happens. It's supposed to find the maximum value in an array but it's just not working. What am I doing wrong?

답변 (2개)

Hiro Yoshino
Hiro Yoshino 2020년 1월 16일
You should use the built-in max function:
But if you really wanted it, it would be like this:
function max=maxval(x)
a=x(1);
N=length(x);
for j = 2:N
if x(j) > a
a = x(j);
end
end
max = a;

VBBV
VBBV 2024년 3월 21일
max = maxval(2:100)
ans = 100
function max=maxval(x)
a=1;
N=length(x);
for j=1:N %for loop is not correctly used
if x(j)>a
a=x(j);
else
a=a;
end
end
max=a;
end

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by