Need a space in strcat comand
3 ビュー (過去 30 日間)
古いコメントを表示
V = [1 2 3 4 5];
strcat ('R = ', strjoin(string( V),', '))
I got the following answer while running the above code
"R =1, 2, 3, 4, 5"
But i need (a white space after '=' sign)
"R = 1, 2, 3, 4, 5"
1 件のコメント
Stephen23
2023 年 12 月 26 日
The solution is already given in the STRCAT documentation:
V = 1:5;
strcat({'R = '},strjoin(string( V),', '))
採用された回答
Dyuman Joshi
2023 年 12 月 26 日
V = [1 2 3 4 5];
out1 = strjoin(["R =" strjoin(string(V),', ')])
You can also add strings like this -
out2 = "R = " + strjoin(string(V),', ')
0 件のコメント
その他の回答 (1 件)
Image Analyst
2023 年 12 月 26 日
V = [1 2 3 4 5];
str = sprintf('R = %s', strjoin(string( V),', '))
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Characters and Strings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!