piecewise function plot issue,
Mostrar comentarios más antiguos
hi im working on a very easy piece of code actually but i cannot seem to plot the proper graph.
syms x;
p1=piecewise(x<2, 7.5*x, x>=2&x<3, 5*x+5,x>=3&x<5,20)
p2=piecewise(x>=5&x<7, -20 ,0)
fplot(x, p2)
xlim([0 12])
ylim([-30 30])

p1 plots just fine. the expression p2 should actually be longer and embedded in p1 but I extracted the code from the point it was not working anymore.
the goal is to build the following graph.

would appreciate some help. thanks!!
Respuestas (1)
Aveek Podder
el 29 de En. de 2018
By default, fplot has a xinterval of [-5,5]. Passing the desired xinterval as an argument should solve the issue.
fplot(p2,[0 12])
Categorías
Más información sobre Line Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!