Name Storing in a While Loop

2 次查看(过去 30 天)
while (true)
f=input('Enter First Name:','s');
l=input('Enter Last Name:','s');
s1=strvcat(f,l)
if( strcmpi(f,'Jed') );
break
end
end
I need help here. My goal with this code is to be able to store names using the command strvcat. However, I'm having trouble integrating it. Any suggestions?
  4 个评论
TS
TS 2015-4-29
Ok, so basically I would like a 2 column matrix with first and last names next to each other.
TS
TS 2015-4-29
And yes, I would like to accumulate first and last names.

请先登录,再进行评论。

采纳的回答

James Tursa
James Tursa 2015-4-29
E.g., using a cell array of strings,
names = cell(0,2);
while (true)
f=input('Enter First Name:','s');
l=input('Enter Last Name:','s');
names(end+1,:) = {f l};
if( strcmpi(f,'Jed') );
break
end
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by