Matrix dimension problem when asking 'What is your name?'

Here is my matlab code. It only works when the input name is 4 characters long otherwise it gives me matrix dimension error. How to make this work for names of all length
prompt = 'What is your name?'
N = input(prompt,'s');
if N=='Jack'
disp('Jack is great!');
else
disp('Hello');
end

回答 (2 件)

Azzi Abdelmalek
Azzi Abdelmalek 2014 年 11 月 23 日
編集済み: Azzi Abdelmalek 2014 年 11 月 23 日

0 投票

Use isequal instead of ==
prompt = 'What is your name?'
N = input(prompt,'s');
if isequal(N,'Jack')
disp('Jack is great!');
else
disp('Hello');
end
Azzi Abdelmalek
Azzi Abdelmalek 2014 年 11 月 23 日

0 投票

Use isequal
prompt = 'What is your name?'
N = input(prompt,'s');
if isequal(N,'Jack')
disp('Jack is great!');
else
disp('Hello');
end

カテゴリ

ヘルプ センター および File ExchangeShifting and Sorting Matrices についてさらに検索

タグ

質問済み:

2014 年 11 月 23 日

編集済み:

2014 年 11 月 23 日

Community Treasure Hunt

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

Start Hunting!

Translated by