write some statements on the command line to remove the largest elements from a vector .try it out on x=[1 2 5 0 5]. the idea is to end up with [1 2 0] in x. Use find and empty vector [ ].

1 次查看(过去 30 天)
clc
clear
runflag='Y';
while runflag=='Y'|runflag=='y'
x_6 = input('Please input in the following format [a b c d n]: ');
vec=max(x_6);
vec1=find(x_6<vec);
vec2=x_6(vec1);
disp('New vector is: ');
disp(vec2);
runflag=input('Keep running [Y or N] :','s');
end

回答(1 个)

KSSV
KSSV 2018-3-22
x=[1 2 5 0 5] ;
[val,idx] = sort(x) ;
pick how many you want from x

类别

Help CenterFile Exchange 中查找有关 Performance and Memory 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by