how can i find the x Value

3 ビュー (過去 30 日間)
Nimbuzz Kurodo
Nimbuzz Kurodo 2021 年 10 月 5 日
回答済み: Star Strider 2021 年 10 月 5 日
I have this three line code, how can i define "x" value
part1 = @(x) (x >= 5).*(10*sqrt(x) + 25);
part2 = @(x) (x >= 0 & x <= 4).*(10*x + 25);
part3 = @(x) (x < 2) .*25;

回答 (1 件)

Star Strider
Star Strider 2021 年 10 月 5 日
One option is linspace
x = linspace(-25, 25, 250);
part1 = @(x) (x >= 5).*(10*sqrt(x) + 25);
part2 = @(x) (x >= 0 & x <= 4).*(10*x + 25);
part3 = @(x) (x < 2) .*25;
figure
plot(x, part1(x))
hold on
plot(x, part2(x))
plot(x, part3(x))
hold off
grid
legend('part1','part2','part3', 'Location','best')
.

カテゴリ

Help Center および File ExchangeCollect Coverage for Models についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by