How do I simplify a function?

9 次查看(过去 30 天)
Danielle
Danielle 2023-1-25
Part of one of my assignments is to simplify this equation:
I put this code into MATLAB:
Treatment= simplify(A-2*(B)+2*(B*Y)+(B/2)-A+(B/2)*(3-(4*Y))-(3*Y*B)+(3*B*A*C)+(C/B)*(sqrt((B^2)*(1/C)*(C+A+(7*C*B)-A))))
but i keep recieving this error:
Error using /
Matrix dimensions must agree.
  1 个评论
Dyuman Joshi
Dyuman Joshi 2023-1-25
Use element-wise operations (.* , ./ and .^) for arrays.
Also, what is the data type of A, B, C and Y? Numeric or symbolic?

请先登录,再进行评论。

回答(1 个)

Star Strider
Star Strider 2023-1-25
You apparently defined some of those variables as arrays previously.
To use the simplified function numerically, use the matlabFunction function, and then present the arrays to it (that have the appropriate dimensions for the necessary calculations) as arguments —
syms A B C Y
Treatment= simplify(A-2*(B)+2*(B*Y)+(B/2)-A+(B/2)*(3-(4*Y))-(3*Y*B)+(3*B*A*C)+(C/B)*(sqrt((B^2)*(1/C)*(C+A+(7*C*B)-A))), 500)
Treatment = 
TreatmentFcn = matlabFunction(Treatment)
TreatmentFcn = function_handle with value:
@(A,B,C,Y)B.*(Y-A.*C).*-3.0+(C.*sqrt(B.^2.*(B.*7.0+1.0)))./B
See if that does what you want. (The 500 argument tells simplify to keep simplifying until it can no longer simplify the function, up to 500 iterations.)
.

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by