conversion
18 views (last 30 days)
Show older comments
how can we convert scalar to vector
0 Comments
Accepted Answer
Paulo Silva
on 24 Apr 2011
In MATLAB a "scalar" is a vector with just one element, for example [1] is the same as 1
here's a sneaky way to separate all the digits of a scalar into columns of a vector
nc=1010; %my scalar value
nv=num2str(n)-'0' %my vector
0 Comments
More Answers (2)
Walter Roberson
on 24 Apr 2011
If S is your scalar, you can use any of the following:
reshape(S,1,[])
reshape(S,[],1)
S(:)
S.'
S(end) = S;
kron(S,1)
full(sparse(S))
0 Comments
Oleg Komarov
on 24 Apr 2011
I think he intends to repmat the scalar.
1 Comment
Walter Roberson
on 24 Apr 2011
Considering the other active questions by the user, I doubt that myself.
See Also
Categories
Find more on Characters and Strings 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!