find the x value
3 ビュー (過去 30 日間)
古いコメントを表示
i have three function
part 1 : y=10 sqrt(x) + 20 x >= 8
part 2 : y=5x + 20 x <= x <= 8
part 3 : y=10 x < 0
how to find x value using matlab script ?
0 件のコメント
回答 (1 件)
KSSV
2021 年 10 月 5 日
I will show one for you, rest you should follow the same.
% y=10 sqrt(x) + 20 x >= 8
x = linspace(8,100) ;
y = 10*sqrt(x)+20 ;
plot(x,y)
0 件のコメント
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!