Question
matlab
Write a script using a loop that will take a vector (of any size) of numbers and remove all numbers that are between 5.0 and
0 0
Add a comment Improve this question Transcribed image text
Answer #1
A = [1,5,8,10,13,18,20,9,4,6,8]
B = [];

for i=1:length(A)
    if A(i) < 5 || A(i) > 9
        B(1+length(B)) = A(i);
    end
end

B

Add a comment
Know the answer?
Add Answer to:
matlab Write a script using a loop that will take a vector (of any size) of...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT