how to assign characters?

7 次查看(过去 30 天)
if my input is a, then i should get always as u.... input is b means i should always get as w..... what techniques should be followed to achieve this.. should i use string concept..

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2013-2-14
data.a='u';
data.b='w'
x=input('input','s');
s=data.(x)
  7 个评论
Azzi Abdelmalek
Azzi Abdelmalek 2013-2-14
编辑:Azzi Abdelmalek 2013-2-14
Maybe you want this
data.a='u';
data.b='w'
x=input('input','s');
n=numel(x);
for k=1:n
s(k)=data.(x(k))
end
Sivakumaran Chandrasekaran
It works well for a single word... how about for a sentence

请先登录,再进行评论。

更多回答(1 个)

Jan
Jan 2013-2-14
You can create a lookup table:
pool = repmat(char(0), 1, 255);
pool('a') = 'u';
pool('b') = 'w';
...
% Or together:
pool('ab') = 'uw'; % A strange indexing, but it works
And then:
c = 'a';
pool(c)

类别

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

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by