How do I simplify a function?

조회 수: 3 (최근 30일)
Danielle
Danielle 2023년 1월 25일
댓글: Dyuman Joshi 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에서 Assumptions에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by