It is possible to use sprintf to print a string input?
3 ビュー (過去 30 日間)
古いコメントを表示
Madalena Francisco
2023 年 1 月 15 日
コメント済み: Madalena Francisco
2023 年 1 月 15 日
Hi, I´m trying to print what the user inputs as a string, but it´s not working with this code below:
Thanks!!
clc, clear, close
vi=input('Indicate the name of the independent variable: ','s');
c1= sprintf('Indicate the units of the variable %0.0s',vi);
vi_u=input(c1);
3 件のコメント
採用された回答
the cyclist
2023 年 1 月 15 日
I think you want
c1= sprintf('Indicate the units of the variable %s',vi);
rather than
c1= sprintf('Indicate the units of the variable %0.0s',vi);
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Install Products についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!