Q:

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

0

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.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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

total answers (1)

Similar questions


need a help?


find thousands of online teachers now