Info

この質問は閉じられています。 編集または回答するには再度開いてください。

where is the error ?

2 ビュー (過去 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