" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
zamiast tego wskaż dla funkcji którego n ma używać
clear all, close all, clear hidden;
global n
n = input('Podaj wykladnik x^n: ')
c = 0
d = 3
function y = wielomian(x)
global n;
y = x^n;
endfunction
Pole = disp( quad(@wielomian, c, d) )