Plotting the left and right side of a tricky equation?
1 次查看(过去 30 天)
显示 更早的评论
Hi, I am trying to find the intersection betweeen two sides of an equation that include some tricky trigonometric terms by plotting them. My code is as follows:
syms k3
eqn = -0.1925 == -k3*cot(k3*9.415/2)
fplot([lhs(eqn) rhs(eqn)] , [0.05 0.55])
However, the error message I get is "Warning: Failed to initialize symbolic preferences. Error using mupadmex Internal error with symbolic engine. Quit and restart MATLAB."
Having checked on Wolfram Alpha about an approximation of the plots these should look like, I don't understand what the difficulty is. I've obviously missed something mathmatical?
3 个评论
David Goodmanson
2018-7-19
Yes, I should have said it works in 2017b update 7. Syms and mupad were locking up after certain updates to Windows 10. As Stephan pointed out in his Answer, updates to 2018a [also 2017b] fixed it, and hopefully that will be your experience.
采纳的回答
Stephan
2018-7-19
Hi,
this works also on R2018a:
Try the following:
ver
and find out if you have the actual update - it should be:
MATLAB Version: 9.4.0.902940 (R2018a) Update 4
If not so, update your Matlab by:
Home Tab / Add Ons (little arrow) / Check for Updates / Products
Then try again.
Best regards
Stephan
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!