Multiplying a cell array element with an element of a matrix gives wrong result

1 view (last 30 days)
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?

Answers (1)

madhan ravi
madhan ravi on 20 Nov 2023
cellarray{this} * vpa(matrix(that))

Products


Release

R2023b

Community Treasure Hunt

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

Start Hunting!