Write function for car sales

조회 수: 2 (최근 30일)
SuzieChan
SuzieChan 2019년 10월 22일
편집: KALYAN ACHARJYA 2019년 10월 22일
Hello,
Can you help me werite a function called car_sale_profit.m
'Profit' if car sales ⩾ 1000 and ≤ 2000
'Loss' if car sales ⩾ 0 and < 1000
The function should use one scalar input (car sales profit).
It should display text to screen for the clients.
Thank you.

답변 (1개)

KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 10월 22일
편집: KALYAN ACHARJYA 2019년 10월 22일
Requested you to read here about function call and here for if else , Without understanding, do not just copy paste the program, any query let me know?
function sales_fun(car_num)
if car_num>=1000 && car_num<=2000
disp('Profit');
else
disp('Loss');
end
  댓글 수: 2
SuzieChan
SuzieChan 2019년 10월 22일
thanks dear.
how i test this function in the command window?
KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 10월 22일
편집: KALYAN ACHARJYA 2019년 10월 22일
Just call it from command window or from any other Matlab script
Command Window:
sales_fun(enter_any sales_number_here);
%...............^^^^

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Install Products에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by