Help with Basic 2D Contour Plot
Ältere Kommentare anzeigen
I am trying to get this contour plot to work. This is a simple example so I can figure out how to do it before applying it to trickier equations.
I have this function saved in a separate .m file:
function a = triarea(x,y)
a = x.^3-2.*x-5+y.^2;
end
The main script calls this function:
for s=[0:1:3],
for t=[0:1:3],
q=triarea(s,t)
end
end
This displays the range of values for q (one after the other, ideally I'd like them as one matrix upon completion but don't know how to do that).
What I want to do is a contour plot where the x-axis is the s variable and the y-axis is the t variable and q is represented as the contour i.e. varying in colour depending on it's value at each s,t point.
How do I do this?
It says that the contour variable Z must be at least a 2x2 matrix but I have only one value at each s,t point.
Akzeptierte Antwort
Weitere Antworten (4)
Will this work for you?
q = zeros(4);
for s=[0:1:3],
for t=[0:1:3],
q(t+1,s+1)=triarea(s,t)
end
end
Note that this will only work if t and s contain only integers. If they do not:
s = [0:0.1:3];
t = [0:0.1:3];
q = zeros(length(s));
for i = 1:length(s)
for j = 1:length(t)
q(i,j) = triarea(s(i),t(j));
end
end
- Rob
James
am 10 Mai 2013
Follow the instructions from Friedrich, but flip the matrix around before you plot it.
Now, Z(1,1) is in the origin, Z(1,2) is in (0,1), Z(3,3) is in (2,2) etc. As you go downwards in Z, you move upwards on the Y-axis (in the plot).
ZZ = flipud(Z);
James
am 10 Mai 2013
Kategorien
Mehr zu Contour Plots finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!