mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-06 20:03:10 +02:00
9 lines
207 B
Matlab
9 lines
207 B
Matlab
% ENUME MICHAŁ SZOPIŃSKI
|
|
% PROJECT B NUMBER 60
|
|
% https://github.com/Lachcim/szopinski-enume
|
|
|
|
% the polynomial function for task 2
|
|
function y = polynomial(x)
|
|
y = x^4 - 7 * x^3 + 4* x^2 + 2 * x + 9;
|
|
end
|