On 12/15/2012 11:20 AM, Tiger wrote:
> Hi folks,
>
> Suppose the following:
> a = '1.4.6.5.11'; % String
>
> I want to be able to extract those numbers, in variable 'a',
> individually and assign them into another variable 'b', such b = {1, 4,
> 6, 5, 11};
...
b=sscanf(a,'%d.');
--
> Hi folks,
>
> Suppose the following:
> a = '1.4.6.5.11'; % String
>
> I want to be able to extract those numbers, in variable 'a',
> individually and assign them into another variable 'b', such b = {1, 4,
> 6, 5, 11};
...
b=sscanf(a,'%d.');
--