在matlab中没有'ans ='的命令窗口中打印?

时间:2013-03-21 20:22:41

标签: matlab printf command-window

当我使用sprintf时,结果显示如下:

sprintf('number=%d %d %d',a,b,c)
sprintf('or %d',h)  

ans = 

number= 5 4 2

ans =

or 2

如何在ans =阻挡它们的情况下显示结果?

2 个答案:

答案 0 :(得分:6)

您可以使用fprintf代替sprintf。请务必在字符串的末尾添加换行符\n

答案 1 :(得分:5)

摘要

选项1 disp(['A string: ' s ' and a number: ' num2str(x)])

选项2 disp(sprintf('A string: %s and a number %d', s, x))

选项3 fprintf('A string: %s and a number %d\n', s, x)

详细

引用http://www.mathworks.com/help/matlab/ref/disp.html(在同一行显示多个变量)

在命令窗口中,有三种方法可以在同一行显示多个变量。

(1)使用[]运算符将多个字符串连接在一起。使用num2str函数将任何数值转换为字符。然后,使用disp显示字符串。

name = 'Alice';   
age = 12;
X = [name,' will be ',num2str(age),' this year.'];
disp(X)

Alice will be 12 this year.

(2)您还可以使用sprintf创建字符串。用分号终止sprintf命令以防止" X ="从显示。然后,使用disp显示字符串。

name = 'Alice';   
age = 12;
X = sprintf('%s will be %d this year.',name,age);
disp(X)

Alice will be 12 this year.

(3)或者,使用fprintf创建并显示字符串。与sprintf函数不同,fprintf不显示" X ="文本。但是,您需要使用换行符(\ n)元字符结束字符串以正确终止其显示。

name = 'Alice';   
age = 12;
X = fprintf('%s will be %d this year.\n',name,age);

Alice will be 12 this year.