Instead of printing the WCFs in the previous problem, create a matrix of WCFs and write them to a file. Use the programming method, using nested loops
belongs to book: MATLAB: A Practical Introduction to Programming and Problem Solving|Stormy Attaway|Fourth Edition| Chapter number:5| Question number:38.5
All Answers
total answers (1)
Ch5Ex38.m
% Print table of wind chill factors for temperatures
% ranging from -20 to 55F and wind speeds from 0 to 55mph
for t = -4:11
for v = 0:11
wcfmat(t+5,v+1) = wcf(5*t,5*v);
end
end
save wcfs.dat wcfmat -ascii
need an explanation for this answer? contact us directly to get an explanation for this answer