How to plot both functions in one plot?

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

3 Comments

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.

Sign in to comment.

Answers (1)

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

2 Comments

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.

Sign in to comment.

Asked:

on 12 Jan 2019

Commented:

on 14 Jan 2019

Community Treasure Hunt

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

Start Hunting!