Jump in a graph
显示 更早的评论
I'm plotting multiple functions and have a jump in value at the end of one of the functions.

Here is the code that i tried to use:
x1 = 1:0.1:108;
y1 = nthroot(x1,3)*8.56;
plot(x1,y1)
hold on
x2 = 108;
y2 = 44.57;
plot(x2,y2)
2 个评论
Torsten
2022-4-18
Yes, there is a jump:
8,56*(108)^(1/3) = 40,76
not
44.57.
Hrvoje Sarinic
2022-4-18
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 2-D and 3-D Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
