Mostra commenti meno recenti
how can we convert scalar to vector
Risposta accettata
Più risposte (2)
Walter Roberson
il 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))
Oleg Komarov
il 24 Apr 2011
0 voti
I think he intends to repmat the scalar.
1 Commento
Walter Roberson
il 24 Apr 2011
Considering the other active questions by the user, I doubt that myself.
Categorie
Scopri di più su Characters and Strings in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!