I'm having trouble graphing using Matlab, and was hoping someone could help. I just want to hand the program a function like $z=x^2-3xy+2$, or whatever, and have Matlab generate a 3-D graph. From the tutorials I've seen online, it seems like this is difficult. Can I not just hand the program that equation and the domain that I want, and have it generate a graph? What code will generate that graph? Thanks!
Tell me more
×
Mathematics Stack Exchange is a question and answer site for
people studying math at any level and professionals in related fields. It's 100% free, no registration required.
|
As an example, lets plot the function in the interval $x=[-2;2], y=[-2;2]$. As mentioned in the comments, this can be achieved in Matlab by the code
It can also be done in Maple by the following code
which is probably more intuitive. At last, one can use Wolfram Alpha. |
|||
|
meshgridhas an example of creating a 3D graph in three lines of code (two, if you fold the second line into the third). It would be nice to not need to go through the motions of creating a meshgrid, but that's how it is in Matlab. – Rahul Narain Aug 17 '12 at 1:35