7 lines
155 B
Mathematica
7 lines
155 B
Mathematica
|
|
function monom = recovermonoms(newton_m,x);
|
||
|
|
|
||
|
|
if isempty(newton_m)
|
||
|
|
monom = 1;
|
||
|
|
else
|
||
|
|
error('Report this bug (call to recovermonoms with double)');
|
||
|
|
end
|