How can I solve this problem using if-else statement?

4 ビュー (過去 30 日間)
Helia  Zarbafi
Helia Zarbafi 2022 年 3 月 17 日
回答済み: Kumar Pallav 2022 年 3 月 21 日
Consider the following continuous mathematical function y =f(x):
y = 1 for x < -1
y = x^2 for -1 <= x <= 2
y = 4 for x > 2
Using if-else statement, write a script named findY.m that promotes the user for a value for x and returns a value for y using the function y = f(x).
  2 件のコメント
KSSV
KSSV 2022 年 3 月 17 日
Whjat have you attempted for the simple homework problem?
Voss
Voss 2022 年 3 月 17 日
You might use the input() function to prompt the user for a value of x, and you might use if-elseif-else statements, based on the value of x, to determine which one of those three equations for y you need to use.

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

回答 (1 件)

Kumar Pallav
Kumar Pallav 2022 年 3 月 21 日
Hi,
You can solve the problem by using the conditional statements (if/else).Please refer this link for more on if/elseif/else staements.
To take user input, use the input command.
You can create scripts in MATLAB which are the simplest codes having no input or output arguments. Refer to this to learn more on writing scripts in MATLAB with examples.
Hope it helps! Happy learning!

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by