Common factor

조회 수: 53 (최근 30일)
cyberdyne
cyberdyne 2011년 9월 29일
댓글: Steven Lord 2024년 4월 22일 13:27
Is there a function to make it find a common factor in an expression with symbolic variables?
For example:
ab+ac--(matlab command)--->a(b+c)
Thanks

답변 (1개)

Andrei Bobrov
Andrei Bobrov 2011년 9월 29일
help factor
syms a b c
factor(a*c + b*c)
  댓글 수: 6
Zoya Saevna
Zoya Saevna 2021년 2월 3일
You shouldn't be kidding!
Steven Lord
Steven Lord 2024년 4월 22일 13:27
I know this part of the discussion is kind of old, but that error message cyberdyne quoted is likely to occur if for example the user were to store the output of the call to the factor function to a variable named factor in the Command Window. [Though it appears the text of the error message may have changed in the decade+ since the original message.]
syms a b c
f = a*b+a*c
f = 
factor = factor(f) % This first call works
factor = 
z = factor(f) % This second one does not, since factor is now a variable
Error using indexing (line 918)
Invalid MATLAB indexing or symbolic function definition. Symbolic function arguments must be symbolic variables and function body must be convertible to sym expression.

Error in indexing (line 962)
R_tilde = builtin('subsref',L_tilde,Idx);

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by