Write a for loop that will print the column of real numbers from 2.7 to 3.5 in steps of 0.2
belongs to book: MATLAB: A Practical Introduction to Programming and Problem Solving|Stormy Attaway|Fourth Edition| Chapter number:5| Question number:1.5
All Answers
total answers (1)
Ch5Ex1.m
for i = 2.7: 0.2: 3.5
disp(i)
end
need an explanation for this answer? contact us directly to get an explanation for this answer