Run one line or the other Option

조회 수: 3 (최근 30일)
Zeeshan Abbas
Zeeshan Abbas 2019년 7월 19일
댓글: Zeeshan Abbas 2019년 7월 19일
I have a code in which I need two options. Either user wants to give message at runtime or want to read from a file.
message = fileread('message.txt');
%OR
message = input('Enter your message to embedd: ', 's');
How can I get prompt message in Matlab, either to select a file or enter your message?

채택된 답변

madhan ravi
madhan ravi 2019년 7월 19일
Certainy not sure what you want to do but see if https://in.mathworks.com/help/matlab/ref/msgbox.html does what you want.
  댓글 수: 3
madhan ravi
madhan ravi 2019년 7월 19일
According to what I understand:
Inp = input('Press 1 or 0');
if ~Inp % if Inp is 0
message = fileread('sample.txt');
else
message = input('Enter your message to embedd: ', 's');
end
Zeeshan Abbas
Zeeshan Abbas 2019년 7월 19일
Exactly what I needed. Fantastic!

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by