In matlab create a method that overloads +. Suppose P1 and P2 are objects of cla
ID: 3282957 • Letter: I
Question
In matlab create a method that overloads +. Suppose P1 and P2 are objects of class MyPolynomial and c is a numeric scalar. Your function should support the following operations: P1+c, c+P1, P1+P2. The addition here follows the regular rule.
For example, (x 2 + 2x + 3) + 4 = x 2 + 2x + 7 and (x 2 + 2x + 3) + (x + 1) = x 2 + 3x + 4.
function ob j=pl u s ( ob j1 , ob j 2 )
%At l e a s t one o f o b j 1 and o b j 2 i s an o b j e c t o f
% MyPolynomial , t h e o t h e r one can be e i t h e r a numer ic
% s c a l a r or an o b j e c t o f MyPolynomial
Explanation / Answer
MATLAB Codes
% Write the polynomial in matrix form
% (x^2 + 2x + 3) + 4 = x 2 + 2x + 7
% In the example P1= (x^2 + 2x + 3) and c=4
% we define the polynomial in matrix form as
P1= [1 2 3];
c=[0 0 4];
A=P1+c
% P2=(x + 1)
% define P2 in matrix form as
P2=[0 1 1];
B=P1+P2
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.