3D Plotting Flashcards

(3 cards)

1
Q

How can we plot a surface using anonymous functions?

A

fsurf(anonymous_funct)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do we show contours or level curves with fsurf?

A

fsurf(f, “ShowContours”, “on”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How to create a surface using matrices?

A

We have two vectors x and y.
[X, Y] = meshgrid(x,y)

Z = F(X) + G(Y)

surf(Z)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly