我这样做是为了输出一个字符串的内容(仅此而已):
fprintf( '%s', my_str );
但感觉我错过了一个仅以my_str
为参数的函数。我应该使用哪种功能?
答案 0 :(得分:1)
disp
正是您所寻找的,如:
>>disp string %command format for single string arguments
string
>>disp 'string test'
string test
>>disp ('string test') %function format
string test
和变量
>> test= 'string';
>> disp(test)
string
但不是
>>disp string test
Error using disp
Too many input arguments.
你可以随时这样做:
>> a = 'string';
>> a
a =
string
答案 1 :(得分:1)
使用DISP - disp(my_str)
在MATLAB命令行上键入“help disp”。