How can I display multiple MatrixVB curves on the same MATLAB figure plot?

1 view (last 30 days)
How can I display multiple MatrixVB curves on the same MATLAB figure plot?
I am trying to generate more than one curve on a single plot. The reference manual says that (x,y,s) triplets may be repeated several times in one plot to put several curves in the same plot, but I can not get this to work. Can you provide me an exampe of how to list several (x,y,s) triplets in the parameter list?

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 27 Jun 2009
The following sample MatrixVB application illustrates how to list several (x,y,s) triplets in the parameter list. The code produces a sine and cosine signal on the same plot by using the (x,y,s) triplet twice.
Private Sub Command1_Click()
x = colon(0, 0.1, 2 * 3.1415926)
Y1 = msin(x)
Y2 = mcos(x)
Call plot(x, Y1, "r", x, Y2, "b")
End Sub

More Answers (0)

Categories

Find more on Thermodynamics & Statistical Physics in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!