Info

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

hi, im tring to make a new vector from some exics one.

1 次查看(过去 30 天)
grades= [87 81 87 80 94 87 62];
scholarship=[];
for i=i:length(grades)
if (grades (i)>85)
scholarship(i)=grades (i);
i=1+i;
else
i=1+i;
end
end

回答(2 个)

madhan ravi
madhan ravi 2018-11-19
编辑:madhan ravi 2018-11-19
grades= [87 81 87 80 94 87 62];
scholarship=[];
ctr=1;
for i=1:length(grades)
if (grades(i)>85)
scholarship(ctr)=grades(i);
ctr=ctr+1;
end
end
scholarship

Stephen23
Stephen23 2018-11-19
The MATLAB way:
>> grades = [87,81,87,80,94,87,62];
>> sch = grades(grades>85)
sch =
87 87 94 87

此问题已关闭。

产品


版本

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by