字符转化为数字问题,求解答。

F(x)=diff(f(x));
g=F(50);
g1=str2double(g);
得出: g
g =
2990798153356952709/1152921504606846976
>> 2990798153356952709/1152921504606846976
ans =
2.5941
>> g1
g1 =
NaN 问题1: 为什么g1的值不是2.5941
问题2: g的value为 1*1 sym 怎么将g的值赋给其他字母

 采纳的回答

jamasr
jamasr 2022-10-28

0 个投票

str2double 是将字符转化为数字,输入为sym,所以为nan
用 vpa(g) 或者 double(g)

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 数据类型转换 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!