Home /
Expert Answers /
Computer Science /
matlab-given-the-following-tracing-problem-provide-the-appropriate-values-and-answers-for-the-pa567
(Solved): MATLAB
Given the following tracing problem, provide the appropriate values and answers for the ...
MATLAB
Given the following tracing problem, provide the appropriate values and answers for the following questions.
\%Assume that the above function is defined in the current directory. \%The following code is then run in the command window %[ forecast 1 , daysoff1 ]= snowDay ('Atlanta' ,0,30); \%What are the values of forecast1 and daysoff1? forecast1 =[]; daysoff1 =[]% Question 2: \%Lines 15-17 in the above code are deleted and the following \%line of code is run in the command window %[ forecast3, daysoff3 ]= snowDay ('New York' , 2, 50) ; \% After the lines are deleted, will the code error? codeerrors =[]; \%change this to true if you think it will error, false if not \%If you belelieve the code will not error, what will the values of the following variables be? \%If you believe the code does error, just leave these values to be [] forecast3 =[]; daysoff 3=[] \% Question 3 (Not graded) \%This is just for your own practice will not be graded. \%Please give a set of input values for the above function \%that could produce the following output values: %[ forecast2, daysoff2] = snowDay (city,precip,temp); % forecast 2= ' 5 inches of snow % daysoff 2=3% city = ? % precip = ? % temo =?