Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

where is the error ?

3 Ansichten (letzte 30 Tage)
KHAIF HICHEM
KHAIF HICHEM am 2 Dez. 2018
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
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 Kommentare
Walter Roberson
Walter Roberson am 2 Dez. 2018
defining the variable in the base workspace is not enough .you need to go to the command line and
mini(v)
KHAIF HICHEM
KHAIF HICHEM am 3 Dez. 2018
can you show me ho to do ?

Antworten (1)

M
M am 3 Dez. 2018
Bearbeitet: M am 3 Dez. 2018
In the command line, where you defined v, call the function this way:
>> v= [1 2 3 ;4 5 6];
>> mini(v)

Diese Frage ist geschlossen.

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by