matlab中disp函数用法
时间: 2023-12-06 09:58:55 浏览: 99
Matlab之print,fprint,fscanf,disp函数的用法.docx
5星 · 资源好评率100%
在 MATLAB 中,`disp` 函数用于在命令窗口中显示输入参数的值。下面是 `disp` 函数的一些用法:
1. 显示字符串:
```
disp('Hello, world!');
```
2. 显示变量值:
```
a = 10;
disp(a);
```
3. 显示多个变量值:
```
a = 10;
b = 20;
disp('The values of a and b are:');
disp([a, b]);
```
4. 格式化输出:
```
a = 3;
b = 4;
c = sqrt(a^2 + b^2);
disp(sprintf('The hypotenuse of a right triangle with sides %d and %d is %.2f', a, b, c));
```
在上述示例中,`sprintf` 函数用于格式化输出并将其传递给 `disp` 函数。`%.2f` 表示输出小数点后两位的浮点数值。
阅读全文