I am having a dataset and trying to plot a 3-d plot between the independent and dependent variables.but, I am getting this error whenever I am trying to plot here is my code:
temp1 = reshape(data(:,1),m,1);
temp2 = reshape(data(:,2),m,1);
temp3 = reshape(data(:,3),m,1);
mesh(temp1,temp2,temp3);
hold
thanks!