Help with Basic 2D Contour Plot
1 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
采纳的回答
Friedrich
2013-5-10
编辑:Friedrich
2013-5-10
Hi,
don't use a loop. Use meshgrid:
s=[0:1:3]
t=[0:1:3]
[X,Y] = meshgrid(s,t)
Z =triarea(X,Y);
contour(X,Y,Z)
This works as long the function triarea accepts matrices as input like it does in your example. Also you don't need to care about s and t (they dont need the same length and the values also doesn't matter).
s=-pi:0.1:pi;
t = 10:0.1:20;
[X,Y] = meshgrid(s,t)
Z =triarea(X,Y);
contour(X,Y,Z)
0 个评论
更多回答(4 个)
John Doe
2013-5-10
编辑:John Doe
2013-5-10
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
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Contour Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!