How to plot both functions in one plot?

f = inline('sin(x/2)')
g = @(y) 2*cos(y)

3 个评论

My two questions are:
  1. Why are you using an inline function?
  2. What have you tried yourself?
f = inline('sin(x/2)')
g = @(y) 2*cos(y)
x = 0:0.1:2*pi
y1 = sin(x/2)
y2 = 2*(cos(x))
[AX,L1,L2] = plotyy(x,y1,x,y2)
your f and g assignment are not being used.

请先登录,再进行评论。

回答(1 个)

syms x y
fplot(sin(x/2))
hold on
fplot(2*cos(y))
help fplot

2 个评论

Looks like you solved the problem by your comment above? Did you read the documentation of fplot?? It belongs to symbolic math toolbox used to define variables symbolically.

请先登录,再进行评论。

Community Treasure Hunt

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

Start Hunting!

Translated by