Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

16/07/11 15:34

J:\Data\06. Matlab\Buku\2011. Matlab Matema...\Contoh_13_12.m

clc
clear all
close all
%
syms z
% soal a
f_a = 3*z^3 + 2*z
zo_a = complex(0,2)
f_a_1 = limit(f_a,zo_a)
% soal b
f_b = 1/(2*z^4)
zo_b = complex(1,2)
f_b_1 = limit(f_b,zo_b)
% soal c
f_c = (z^2 - i)^2
zo_c = complex(1,0)
f_c_1 = limit(f_c,zo_c)
% soal d
f_d = ( z - i)/(2*z)
zo_d = complex(-1,-4)
f_d_1 = limit(f_d,zo_d)

1 of 1

You might also like