Multiplying a cell array element with an element of a matrix gives wrong result
Show older comments
I have a cell array element: (a - 1)*(a - 4)
And I have a number: 0.0833
When I try to multiply them:
cellarray{this} * matrix(that)
, the result is
((a - 1)*(a - 4))/12
The expected result would be
(a - 1)*(a - 4)*0.0833
(or the calculated equivalent), but it isn't. What could be the problem and how can I achieve what is wanted?
1 Comment
Matt J
on 20 Nov 2023
Please demonstrate this by running the code online for us.
Answers (1)
madhan ravi
on 20 Nov 2023
cellarray{this} * vpa(matrix(that))
Categories
Find more on Operators and Elementary Operations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!