Question: In the Hazelrigg data set minimum daily temperature is stored in column 11 of the data table X and rainfall in column 23. You want
In the Hazelrigg data set minimum daily temperature is stored in column 11 of the data table X and rainfall in column 23.
You want to look at the correlation of these two variables in a single plot ignoring the time and seasonality issues. Which Matlab command on the list below will provide this information directly?
A. surf(X,11,23)
B. ribbon([X(:,11),X(:,23)])
C. plot(X(:,11),X(:,23),'.')
D. scatter(X(11,:),X(23,:),15)
E. ribbon(X(:,11,:),X(:,23))
F. plot(X(11,:)',X(23,:)','.')
G. plot(X(11,:)',X(23,:)')
H. plot(X(11,:),X(23,:))
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
