Borrar filtros
Borrar filtros

Subtracting polynomial from piecewise polynomial

1 visualización (últimos 30 días)
Nathan Mu
Nathan Mu el 12 de Abr. de 2022
Respondida: Bruno Luong el 12 de Abr. de 2022
Hello, I have a piecewise polynomial and I want to subtract from it. How would I go about doing this?
Thanks!
  1 comentario
Riccardo Scorretti
Riccardo Scorretti el 12 de Abr. de 2022
Hi Nathan, could you post part of your code? You have a polynomial in which format? Coefficients only? Symbolic?

Iniciar sesión para comentar.

Respuesta aceptada

Bruno Luong
Bruno Luong el 12 de Abr. de 2022
x=cumsum(rand(1,5));
x = x-mean(x);
% Test pp
y=rand(size(x));
pp=spline(x,y);
% Here is ppsubx2 a pp-form of pp-x^2
x0=pp.breaks(1:end-1)';
ppsubx2=pp;
ppsubx2.coefs = ppsubx2.coefs - [zeros(ppsubx2.pieces,ppsubx2.order-3), ones(size(x0)), 2*x0, x0.^2];
% Check
xi = linspace(min(x),max(x));
figure
plot(xi, ppval(pp,xi)-xi.^2, 'b', xi, ppval(ppsubx2,xi), 'r+');

Más respuestas (0)

Categorías

Más información sobre Polynomials en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by