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

3 commentaires

Rik
Rik le 12 Jan 2019
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)
Walter Roberson
Walter Roberson le 14 Jan 2019
your f and g assignment are not being used.

Connectez-vous pour commenter.

Réponses (1)

madhan ravi
madhan ravi le 13 Jan 2019
syms x y
fplot(sin(x/2))
hold on
fplot(2*cos(y))
help fplot

2 commentaires

Shraddha Pandey
Shraddha Pandey le 14 Jan 2019
what is syms
madhan ravi
madhan ravi le 14 Jan 2019
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.

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by