converting sym to double
7 次查看(过去 30 天)
显示 更早的评论
i have been working on this code
syms k
K = zeros(8);
K(1,1) = 0.7499*k
MATLAB shows the error "unable to convert expression into double array"
Also in general How do I create a matrix with symbolic expressions as element values for any given matrix.
0 个评论
采纳的回答
Sriram Tadavarty
2020-3-19
Hi Parth,
Do not define the K with double variables and that should help. Instead directly create the matrix with those many symbolic variables.
Hope this helps.
Regards,
Sriram
0 个评论
更多回答(1 个)
Steven Lord
2020-3-19
Make K a sym array from the start. Then MATLAB doesn't need to convert the symbolic expression 0.7499*k when assigning into an element of K.
K = sym(zeros(8));
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Numbers and Precision 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!