So how do you make MAtlab into a responding program?

3 views (last 30 days)
I Want to make a program that can respond back to you with words. I found one way but its annoying. I need to put (' ') Around the words I type and the it response but I just want to type the words and it give off a correct responses. Any good examples to make this work?

Accepted Answer

Walter Roberson
Walter Roberson on 15 Sep 2013
Use input with the 's' option to request the responses
din = input('What did you have for dinner?', 's');
  7 Comments
Walter Roberson
Walter Roberson on 30 Sep 2013
if any(strcmpi(din, {'Hello', 'Hi', 'Whats up'}))

Sign in to comment.

More Answers (1)

Rainaire Hansford
Rainaire Hansford on 20 Sep 2013
How do I make if and else statement equal to the words that I type.

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!