Clear Filters
Clear Filters

Make r a 1x5 vector using rand. Find the elements that have values <0.5 and set those values to 0 (use find).

4 views (last 30 days)
What would be the correct code for this? I have to use find in my answer.

Accepted Answer

ANKUR KUMAR
ANKUR KUMAR on 30 Dec 2017
Use any of these two codes will get you to the desired result.
A=rand(1,5)
A(A<0.5)=0
or
A(find(A<0.5))=0

More Answers (1)

Roger Stafford
Roger Stafford on 30 Dec 2017
It is not necessary in Matlab to use 'find' for this problem. Do this:
r(r<0.5) = 0;
However, if you must use 'find', do this instead:
r(find(r<0.5)) = 0;

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!