Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
同等のJavaコードのためにMatlabの文字列に改行文字を追加する方法は?
String line; line += "\n";
以下のリンクから
str = sprintf('test \n test') or str = ['test ' char(10) ' 'test']
「改行」は、使用しているオペレーティングシステムによって異なります...最善の解決策は
line = sprintf('%s\n', line);
これにより、Matlab は OS に対して「正しい」キャリッジ リターンを使用するようになります。