Clear Filters
Clear Filters

Run one line or the other Option

1 view (last 30 days)
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?

Accepted Answer

madhan ravi
madhan ravi on 19 Jul 2019
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 Comments
madhan ravi
madhan ravi on 19 Jul 2019
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 on 19 Jul 2019
Exactly what I needed. Fantastic!

Sign in to comment.

More Answers (0)

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!