Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
where is the error ?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
function [ vmin ] = mini(vect)
%MINI retourne le minimum d’un vecteur
n = numel(vect);
if n == 0
vmin = [];
else
vmin = vect(1);
for k = 2:n
if vect(k) < vmin
vmin = vect(k);
end
end
end
end
function [ vmax ] = maxi(vect)
%MAXI retourne le maxiimum d’un vecteur
n = numel(vect);
if n == 0
vmax = [];
else
vmax = vect(1);
for k = 2:n
if vect(k) > vmax
vmax = vect(k);
end
end
end
end
8 Commenti
Walter Roberson
il 2 Dic 2018
defining the variable in the base workspace is not enough .you need to go to the command line and
mini(v)
Questa domanda è chiusa.
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
