How to plot both functions in one plot?

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

3 Commenti

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.

Accedi per commentare.

Risposte (1)

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

2 Commenti

what is syms
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.

Accedi per commentare.

Richiesto:

il 12 Gen 2019

Commentato:

il 14 Gen 2019

Community Treasure Hunt

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

Start Hunting!

Translated by