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

1 vue (au cours des 30 derniers jours)
Cole Bromfield
Cole Bromfield le 16 Jan 2020
Réponse apportée : VBBV le 21 Mar 2024
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?

Réponses (2)

Hiro Yoshino
Hiro Yoshino le 16 Jan 2020
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 le 21 Mar 2024
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

Catégories

En savoir plus sur Startup and Shutdown dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by