conversion
이전 댓글 표시
채택된 답변
추가 답변 (2개)
Walter Roberson
2011년 4월 24일
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
2011년 4월 24일
0 개 추천
I think he intends to repmat the scalar.
댓글 수: 1
Walter Roberson
2011년 4월 24일
Considering the other active questions by the user, I doubt that myself.
카테고리
도움말 센터 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!