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

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

Answers (2)

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
The MATLAB way:
>> grades = [87,81,87,80,94,87,62];
>> sch = grades(grades>85)
sch =
87 87 94 87

This question is closed.

Products

Release

R2016a

Asked:

on 19 Nov 2018

Closed:

on 20 Aug 2021

Community Treasure Hunt

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

Start Hunting!