Info

此问题已关闭。 请重新打开它进行编辑或回答。

where is the error ?

1 次查看(过去 30 天)
KHAIF HICHEM
KHAIF HICHEM 2018-12-2
关闭: MATLAB Answer Bot 2021-8-20
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 个评论
Walter Roberson
Walter Roberson 2018-12-2
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 2018-12-3
can you show me ho to do ?

回答(1 个)

M
M 2018-12-3
编辑:M 2018-12-3
In the command line, where you defined v, call the function this way:
>> v= [1 2 3 ;4 5 6];
>> mini(v)

此问题已关闭。

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by