is there a way to allow the user to input a string of numbers and then have the software pull specific numbers from it?
Show older comments
is there a way to allow the user to input a string of numbers and then have the software pull specific numbers from it?
this=[183849384]
this(3)=3
this(6)=9
this(9)=4
Answers (1)
per isakson
on 21 Oct 2015
Edited: per isakson
on 22 Oct 2015
This is one way
>> this=[183849384]
this =
183849384
>> str = sprintf('%d',this)
str =
183849384
>> num = sscanf( str, '%1d' )'
num =
1 8 3 8 4 9 3 8 4
>> num(6)
ans =
9
>>
 
In response to the comment.
Assumption: one letter names
>> str = 'xyza';
>> str(1)
ans =
x
>> str(2)
ans =
y
>>
or
>> cac = textscan( str, '%1s' )
cac =
{4x1 cell}
>> cac{1}'
ans =
'x' 'y' 'z' 'a'
???
Categories
Find more on Large Files and Big Data in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!