How to graph a piecewise function NOT using if-else statements

3 ビュー (過去 30 日間)
David Ip
David Ip 2018 年 5 月 12 日
コメント済み: David Ip 2018 年 5 月 13 日
Good morning,
My professor is asking is to graph a piecewise function in R3 using anonymous functions and logicals and NOT using if-else statements. He also is asking to use "meshgrid" and the "surf" command. I attached the picture below. How would I start this? Thanks in advance

回答 (1 件)

Jan
Jan 2018 年 5 月 12 日
Start by using meshgrid and surf with a non-piecewise function: find out how to draw a plane at all.
Then use this method:
t = linspace(0, 2*pi, 100);
y = sin(t) .* (t < pi) + cos(t) .* (t >= pi);
plot(t, y)
This is a "logical mask" to create a piecewise function. It works in 2D also.
  3 件のコメント
Image Analyst
Image Analyst 2018 年 5 月 12 日
Use & instead of &&.
David Ip
David Ip 2018 年 5 月 13 日
Thank you!

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeDiscrete Data Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by