필터 지우기
필터 지우기

compute sum of polynomial square

조회 수: 1 (최근 30일)
RICCARDO
RICCARDO 2024년 8월 3일
이동: Matt J 2024년 8월 4일
Can I solve sum of polynomial square in a one variable ?
e.g. (1+x)^2 + (3+x)^2 +2*x =
Can Mathlab compute result as x variable ?
  댓글 수: 3
Walter Roberson
Walter Roberson 2024년 8월 3일
syms x
eqn = (1+x)^2 + (3+x)^2 +2*x
eqn = 
solx = solve(eqn, x)
solx = 
RICCARDO
RICCARDO 2024년 8월 3일
편집: RICCARDO 2024년 8월 3일
result shuld be : (1+2x+x^2) + (9+6x +x^2) + 2x
that is finally : 2x^2 + 10x + 10
This is a simple expression expansion
I'd like to plot it too
thanks

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

채택된 답변

Walter Roberson
Walter Roberson 2024년 8월 3일
이동: Matt J 2024년 8월 4일
syms x
eqn = (1+x)^2 + (3+x)^2 +2*x
eqn = 
expand(eqn)
ans = 
  댓글 수: 2
RICCARDO
RICCARDO 2024년 8월 3일
이동: Matt J 2024년 8월 4일
thanks very very much, can I plot it too?
Walter Roberson
Walter Roberson 2024년 8월 3일
이동: Matt J 2024년 8월 4일

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Polynomials에 대해 자세히 알아보기

제품


릴리스

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by