如何在Matlab中打印字符串?

时间:2014-02-25 09:56:31

标签: matlab printing

我这样做是为了输出一个字符串的内容(仅此而已):

fprintf( '%s', my_str );

但感觉我错过了一个仅以my_str为参数的函数。我应该使用哪种功能?

2 个答案:

答案 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”。