Ask an expert. Trust the answer.
Your academic and career questions answered
by verified experts.
In general, the syntax for a surf plot is surf(X,Y,Z). I have u = F(r,z). I'd like to do surface plots of u for multiple cross sections at z = h1, h2,...
Hi, I have : x=1:12 %the index of months y = x. ^ 2; plot(x,y) No I want to change the position of x labels from below the tickets to the middle of in...
How can I avert that matlab round off in the plot the number. If I add as input this:1672324.884 in my plot appears 167*10^4....
lets say I have a axb cell , each cell contains a 1xn double I want to make a plot like this plot({1,:}(1,end)) , i.e. for the first row of this cell ...
GOAL: I have two independent arrays y1 and y2 and want to plot them depending on x1 and x2 in the same graph. The curves should be plotted as symbols ...
I just did this 3D random Walk simulation but I am trying to figure it out how to put a marker(e.g., point) to ilustrate the beginning of the simulati...
i have an array of variable y, 32 x 247 in dimension and which i wish to work out the column means for and then plot in order to represent a mean grap...
I have a very long and somewhat complicated complex function that I need to find the roots of. It is a function of "s", which is imaginary, and which ...
TIME=1:1:100; Z = 1: 1: 100; [X,Y]=meshgrid(TIME,Z); P = 12242-28.649. * Cos (6.28. * TIME + 1.33. * Z) -1702.3. * Sin (6.28. * TIME + 1.33. * Z) -495...
Why don't plot(x1,y1,x2,y2) and plot(x1,y1,'b',x2,y2,'g') have the same color green line? Can you make them the same color? All the other colors that ...