Matlab- Đạo Hàm , Nguyen Ham, Tich Phan | Faintlove

p1=[1 5 6 2]

p1 =

1 5 6 2

p2=[1 0 -1]

p2 =

1 0 -1

polyval(p1,1);%tinh gia tri da thuc tai x0 roots(p1)

ans =

-3.4142 -1.0000 -0.5858

roots(p1);% tim nghiem cua da thuc poly([1,-1])% tim da thuc khi da biet nghiem cua da thuc

ans =

1 0 -1

p=conv(p1,p2)% tinh tich chap

p =

1 5 5 -3 -6 -2

p=conv(p1,p2);% tinh tich cua da thuc dh=polyder(p1)% dao ham cua da thuc p1

dh =

3 10 6

polyint(dh)% tinh nguyen ham cua da thuc

ans =

1 5 6 0

polyint(dh,2)% tinh nguyen ham cua da thuc voi hang so C=2

ans =

1 5 6 2 syms x y f=x^2-3*x+1

f =

x^2 – 3*x + 1

subs(f,x,2)% tinh gia tri cua ham f tai x=2

ans =

-1

limit(f,x,0)% tinh gioi han cua ham so f theo bien x tien toi 0

ans =

1

limit(sin(x)/x,x,0)

ans =

1

limit(sin(x)/x,x,0); % tinh gioi han cua ham sin(x)/x theo an x khi x tien toi 0 limit((1+1/x)^x,x,inf)% tinh gioi han cua ham (1+1/x)^x theo an x khi x tien toi vo cung(inf)

ans =

exp(1)

limit(f,x,0,’left’)% gioi han ben trai

ans =

1

limit(f,x,0,’right’)% gioi han cua ham f khi x tien toi 0+

ans =

1

diff(f,x)%dao ham cua ham f theo an x

ans =

2*x – 3

diff(diff(f,x))%dao ham cap 2 cua ham so f theo an x

ans =

2

diff(f,x,2)% dao ham cap 2 cua f theo an x

ans =

2

int (f,x)% tinh nguyen ham cua ham f theo an x

ans =

(x*(2*x^2 – 9*x + 6))/6

expand(ans)

ans =

x^3/3 – (3*x^2)/2 + x

int(cos(x),x)

ans =

sin(x)

int(sin(x),x)

ans =

-cos(x) int(f,x,0,2)% tich phan ham f theo an x can tu 0-2

ans =

-4/3

ezplot(sin(x),[0,2*pi])%ve do thi ham sin x theo an x trong khoang tu 0-2pi ezplot(f,[-5,10])

Chia sẻ:

  • Twitter
  • Facebook
Thích Đang tải...

Có liên quan

Từ khóa » đạo Hàm Trong Matlab Là Gì