variable怎么记matlab程序vpa,MATLAB中的vpa函数简单实⽤记录——精度
控制
vpa函数有两种语法格式:
vpa(x)
vpa(x,d)
下⾯是MATLAB帮助⽂档上的解释:
vpa(x) uses variable-precision floating-point arithmetic (VPA) to evaluate each element of the symbolic input x to at
least d significant digits, where d is the value of the digits function. The default value of digits is 32.
vpa(x,d) uses at least d significant digits, instead of the value of digits.
从上述描述⼤概知道,vpa(x)需要配合函数digits实⽤,实⽤digits来设定精度值。
例如:
>> doc vpa
>> digits(3)
>> vpa(pi)
ans =
3.14
我们也可以使⽤第⼆种语法格式来设定精度,例如:
>> vpa(pi,5)
ans =
3.1416
⼜例如:
Find π to 100 significant digits by specifying the second argument.
vpa(pi,100)
ans =
4825342117068
⼤概了解下就这些,详细内容在MATLAB命令框中输⼊doc vpa看详细解释。
本⽂同步分享在 博客“李锐博恩”(CSDN)。
如有侵权,请联系 support@oschina 删除。
本⽂参与“OSC源创计划”,欢迎正在阅读的你也加⼊,⼀起分享。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。