필터 지우기
필터 지우기

Write a MATLAB script (maksimin) that calculates the maximum and minimum values in an input vector. You should consider that the input vector can have any length

조회 수: 1 (최근 30일)
Write a MATLAB script (maksimin) that calculates the maximum and minimum values in an input vector. You should consider that the input vector can have any length. Please write the answer within a sentence.
i couldnt know how i can create a script which answer should give a sentences like that 'The maximum value is a and the minimum value is b'

채택된 답변

John D'Errico
John D'Errico 2021년 12월 18일
Do you know how to work with character strings, how to build them from components? You should. TRY IT! For example,
A = 'Fred';
B = 'Ethel';
disp([A,' and ',B])
Fred and Ethel
Next, do you know how to convert a numeric variable into a string?
X = pi/2;
disp(['X has value ',num2str(X)])
X has value 1.5708
  댓글 수: 6
John D'Errico
John D'Errico 2021년 12월 19일
disp works fine. Or you can use fprintf. You might add a space aroun the 'and'.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by