You are on page 1of 57

MATLAB

-
MATLAB -
MATLAB
. MATrix LABoratory

C FORTRAN
.
MATLAB
.

. .

help


MATLAB help
:
help magic
MAGIC Magic square.
MAGIC(N) is an N-by-N matrix constructed from the integers
1 through N^2 with equal row, column, and diagonal sums.
Produces valid magic squares for N = 1,3,4,5,...
help helpwin . MATLAB

.
help .
help
MATLAB
.

- demo
demo
MATLAB .
MATLAB .
"
MATLAB .
.

-
-
MATLAB :
.
.
) (.
.
) (.
.
.
.
.
MATLAB
semicolon .
a=2.5
=a
2.5000
; a=3.2
a
=a
3.2000
' p='hello
=p
hello

MATLAB :
A
??? Undefined function or variable 'A'.

"
semicolon .
CONTROL C
.
. MATLAB
. :
format compact

:
] v=[1 2 3
=v
1 2 3
]' w=['abcd' '1234
=w
abcd1234

"
. ) MATLAB
( ] [ .
:
m=[1 2 3
]4 5 6
=m
1 2 3
4 5 6
' n=['abcd
]''1234
=n
abcd
1234

:
) m(2,3
= ans
6

m(2,3)=7
=m
1 2 3
4 5 7

:
6
14

2*m
= ans
2 4
8 10

4
8

m+1
= ans
2 3
5 6

n1=[2 5 4
;]-1 -2 0
m+n1
= ans
3 7 7
3 3 7


. semicolon :
q=[1, 2, 3
]4 5 6; 7 8 9
=q
1 2 3
4 5 6
7 8 9

) ( : :
) q(1,:
= ans
1 2 3
) q(:,2
= ans
2
5
8
) q(1:2,2:end
= ans
2 3
5 6

who :
who
Your variables are:
w

n
p

q
v

a
m

whos
:
Size

Bytes Class
8 double array
48 double array
16 char array
10 char array
72 double array
24 double array
16 char array

1x1
2x3
2x4
1x5
3x3
1x3
1x8

whos
Name
a
m
n
p
q
v
w

Grand total is 31 elements using 122 bytes


MATLAB . t
/
2.0000

1.5000

1.0000

t=0:.5:2
=t
0 0.5000

) (
MATLAB 5 . m "
:
) m(:,:,2)=ones(2,3
= )m(:,:,1
1 2 3
4 5 7
= )m(:,:,2
1 1 1
1 1 1

."
.

length :
) length(t
= ans
5

size :
) size(n
= ans
2 4

size
.
:
*
*
*
*
-
-
:
x
x
x
x
x
x
x
x
x

)ones(2
)ones(2,3
)zeros(2
)eye(3
)linspace(-1,5,7
)linspace(-1,2,8

)sum(x
)cumsum(x
)prod(x
)cumprod(x
)max(x
)max(x
)sort(x
)mean(x
)std(x

-
) (workspace
save :
save
Saving to: matlab.mat

matlab.mat .
:
load
Loading from: matlab.mat

:
save myfile

:
load myfile

:
save myfile t f


clear:
who
Your variables are:
t

w
v

n
p

f
m

a
ans

clear a f
who
Your variables are:
w

t
v

n
p

ans
m

clear
.

save binary
MATLAB .
.
ascii :
save name t -ascii
clear
load name
who
Your variables are:
name

ascii
." ascii ) (extension
.

-
MATLAB
.
.
:
0.4565
0.0185

0.8913
0.7621

) r=rand(2,4
=r
0.9501 0.6068
0.2311 0.4860
' r
= ans
0.9501 0.2311
0.6068 0.4860
0.8913 0.7621
0.4565 0.0185

*
:
;] v=[1:4
' r*v
= ans
6.6636
3.5634

3.4565
0.5185

2.8913
1.7621

;] s=[0:3; 2:-.5:.5
s+r
= ans
0.9501 1.6068
2.2311 1.9860

)det(a
)inv(a
)eig(a
)poly(a

-
MATLAB .
- : - - .
. :
;] a=[1 2 3
;] b=[2 -1 0

:
a*b
* >== ??? Error using
Inner matrix dimensions must agree.

MATLAB
. :
' a*b
= ans
0

*+*(-)+*= :

:
0

a.*b
= ans
2 -2

:
9

a.^2
= ans
1 4

:
a^2
^ >== ??? Error using
Matrix must be square.

- disp format
.
MATLAB
.
disp .
;] x=[2 4 5
) disp(x
2 4 5
;' y='That is better
) disp(y
That is better

MATLAB clc :
clc

" format compact


. format .
:

0.0000

0.0000

)) v=exp(-10*(1:5
=v
* 1.0e-004
0.4540 0.0000 0.0000

.
format :

format long
v
=v
* 1.0e-004
Columns 1 through 4
0.45399929762485 0.00002061153622 0.00000000093576 0.00000000000004
Column 5
0.00000000000000


.
:
format short e
v
=v
4.5400e-005 2.0612e-009 9.3576e-014 4.2484e-018 1.9287e-022

format
help .

-
MATLAB

. p(x) = x -x +
MATLAB :
;] p=[1 0 -2 5

-
:
) r=roots(p
=r
-2.0946
1.0473 + 1.1359i
1.0473 - 1.1359i

:
5.0000

) p2=poly(r
= p2
1.0000 0.0000 -2.0000

-
polyval . ) p(
:
) polyval(p,5
= ans
120

-
conv deconv .
a(x)=x+x+ b(x)=x- .
:
;] a=[1 1 1]; b=[1 -1
) c=conv(a,b
=c
1 0 0 -1

a/b :
) [q,r]=deconv(a,b
=q
1 2
=r
0 0 3

-
polyder .
) c=polyder(a
=c
2 1

) (a*b :
) d=polyder(a,b
=d
3 0 0

polyder
) (a/b :

) [q,d]=polyder(a,b
=q
1 -2 -2
=d
1 -2 1

-
polyfit
. :
;] x=[1 2 3 4 5
;] y=[5.5 43.1 128 290.7 498.4


:
) p=polyfit(x,y,3
=p
-0.1917 31.5821 -60.3262 35.3400

:
; x2=1:.1:5
;) y2=polyval(p,x2
) plot(x,y,'o',x2,y2
500
450
400
350
300
250
200
150
100
50

4.5

3.5

2.5

1.5

-
-
MATLAB .
<

=<

>

=>

==

=~

.
.
.
3<5
= ans
1
] [1 2]>=[0 3
= ans
1 0
a=[1 2 3
;]2 3 4
b=[-1 2 1
;]0 2 4
a~=b
= ans
1 0 1
1 1 0

:
;] x=[1 2 -1 0 -5 4 -1.5 3 2.5 -.5

2.5000

3.0000

4.0000

2.0000

) x(x>0
= ans
1.0000

:
))) length(x((x>=0)&(x<=3
= ans
5

-
.
:
&
) (
|
) (
xor
) (
~

:
;] m=[1 2 4; -2 3 -1
) ~(m>0
= ans
0 0 0
1 0 1
) (m>0)|(m<=2
= ans
1 1 1
1 1 1
) (m>0)&(m<=2
= ans
1 1 0
0 0 0
)] xor([0 0 1 1],[0 1 0 1
= ans
0 1 1 0

xor .
- all any find
any .
;] v=[-2 1 3 5
) any(v<1
= ans
1

) any(v>6
= ans
0

all .
) all(v<1
= ans
0
) all(v<6
= ans
1

.
.
find .
) find(v>3
= ans
4

-
MATLAB
. ) (Inf
) NaN .(Not a Number
] x=[1 2 0]./[2 0 0
Warning: Divide by zero.
=x
0.5000
Inf
NaN

.
) y=sqrt(-1
=y
0 + 1.0000i

isnan isinf finite isreal :


) finite(x
= ans
1 0 0

isinf(x)
ans =
0 1

isnan(x)
ans =
0 0 1
isreal(x)
ans =
1
isreal(y)
ans =
0

-
-
:
x=linspace(0,2); y=x.*exp(-x);
plot(x,y)
grid
xlabel('x')
ylabel('y')
title('y=x.e^{-x}')
text(1,.2,'centre')
y=x.e-x
0.4
0.35
0.3

0.25
0.2

centre

0.15
0.1
0.05
0

0.2

0.4

0.6

0.8

1
x

1.2

1.4

1.6

1.8

:
- ) (x ) (y .
- y x .
- .
- .
- .
- .
- ) ) / (( )
(centre .
Save As File
. .ffig
. MATLAB
open .
) ( .
.
)' plot(x,y,'.',x,x.*sin(x),'-.

.
)' legend('x.e^{-x}','x.sin x

2
x.e-x
x.sin x

1.8
1.6
1.4
1.2
1
0.8
0.6
0.4
0.2

1.8

1.6

1.4

1.2

0.8

0.6

0.4

0.2

:
) subplot(2,1,1), plot(x,y
)'} ylabel('x.e^{-x
)) subplot(2,1,2), plot(x,x.*sin(x
)' ylabel('x.sin x

0.4
0.3
-x

x.e

0.2
0.1

1.8

1.6

1.4

1.2

0.8

0.6

0.4

0.2

1.8

1.6

1.4

1.2

0.8

0.6

0.4

0.2

2
1.5
x.sin x

1
0.5
0

subplot ) (
) ( .
clf .
clf
figure . axis

0.4000

) figure(2
) plot(x,y
axis
= ans
0 2.0000

0.3

.
0.25
axis.
)] axis([0 .5 0 .3
0.2

0.15

0.1

0.05

0.5

0.45

0.4

0.35

0.3

0.25

0.2

0.15

0.1

0.05


.
fplot :
)] fplot('x*exp(-x)',[0 2

)
( m-file ) (
. fplot
.
:
) x(
) y(



)semilogx(x,y
)semilogy(x,y
)loglog(x,y
)polar(r,theta
)bar(x,y
)area(x,y

-
MATLAB .
plot3:
; t=0:.01:6*pi
) plot3(cos(t),sin(t),t
)') xlabel('cos(t
)') ylabel('sin(t
)' zlabel('t

20

15

10

0
1
0.5

1
0.5

-0.5

-0.5
-1

)cos(t

-1

)sin(t

surf :
;) [x,y]=meshgrid(-pi:pi/8:pi,-pi:pi/8:pi
;) z=cos(x).*cos(y
) surf(x,y,z
) view(30,45

1
0.5
0
4

-0.5
2

-1
-4

-2
0

-2
-4

2
4

meshgrid xy .
x y .
shading . z colorbar
.
shading interp
colorbar

meshz meshc mesh waterfall


.

- /
/
. .
;) [x,y]=meshgrid(-2:.1:2,-2:.1:2
;) z=2-((x-1).^2+4*(y-1).^2+2*x.*y
;)] [c,h]=contour(x,y,z,[-15 -10 -5 -2 0 0.5
)' clabel(c,h), xlabel('x'), ylabel('y

-2
-5

1.5
0.5 0

-2

-2

0.5

0.5

-2

-5

-5

-10

-10

-2

-10

-0.5

-15

-1

-15
-1.5

1.5

0.5

0
x

-0.5

-1

-1.5

-2
-2

contour
. clabel
.
xy
z :
) pcolor(x,y,z
shading interp
colorbar

- )(m-files
MATLAB
. MATLAB "

" ".m . (MATLAB Editor) MATLAB


" ".m .
) MATLAB (Notepad
" ascii " ".m .

.
.

-
m-file .
MATLAB .
MATLAB .

MATLAB pvt.m :
% A sample scritp file: pvt.m
)'disp(' Calculating the volume of an ideal gas.
;R = 8314
)% Gas constant (J/kmol.K
t = ...
;)' = )input(' Vector of temperature (K
;p = input(' Pressure (bar) = ')*1e5
;v = R*t/p
% Ideal gas law
% Plotting the results
)plot(t,v
)')xlabel('T (K
)')ylabel('V (m^3/kmol
)'title('Ideal gas volume vs temperature

% . %
. . . .
.

.
pvt.m MATLAB

) (.

pvt
Calculating the volume of an ideal gas.
Vector of temperature (K) = 100:25:300
Pressure (bar) = 10

- diary
diary .
diary xyz
MATLAB xyz . xyz

.
MATLAB
.
xyz :
diary off

xyz
.m . m-file
.

-
MATLAB
.
.
:
function . .
= . .m. ) ( . ideal.m
:

)function v = ideal(t,p
% ideal: Calculation of ideal gas specific volume
% v=ideal(t,p) takes the vector of temperature (t) in K
% and the vector of pressure (p) in Pa and returns the
% matrix of specific volume (v) in m3/kmol.
% Start of calculations
;R = 8314
)% Gas constant (J/kmol.K
)for k = 1:length(p
;)v(k,:) = R*t/p(k
% Ideal gas law
end

MATLAB
." ) (:
; p=1:10; t=300:10:400
;) vol=ideal(t,p
) surf(t,p,vol
view(135,45), colorbar


.
MATLAB help .
help ideal
ideal: Calculation of ideal gas specific volume
v=ideal(t,p) takes the vector of temperature (t) in K
and the vector of pressure (p) in Pa and returns the
matrix of specific volume (v) in m3/kmol.

-
MATLAB
.
.
if . . . (else . . .) end if
.:
;)' = x = input(' x
if x >= 0
y=x^2
end

if .
if end
.
else .:
;)' = x = input(' x
if x >= 0
y=x^2
else
y=-x^2
end

if else
else end .
for . . . end for for end
.:
;k = 0
for x = 0:0.2:1
k = k + 1
)y = exp(-x
end

while . . . end

while .:
;x = 0
while x < 1
)y = sin(x
;x = x + 0.1
end

if while
.
while end
.

switch . . . case . . . (otherwise . . .) end


" switch-case
if .:
;)'= a = input('a
switch a
case 1
)'disp('One
case 2
)'disp('Two
case 3
)'disp('Three
end

break - pause
break .pause
break . pause
pause
.:

)])y = ',num2str(y

;k = 0
for x = 0:0.2:1
if k > 5
)'disp('k > 5
break
end
;k = k + 1
;)y = exp(-x
'disp([' k = ',num2str(k),
pause
end

k y
. for
k . break ) for
( .

-
) (debugging:
. . );( semicolon .

disp
.

.
MATLAB )"
(copy-paste .

.
.

-
MATLAB
/ .
.
PVT .

.

.
:
)(main.m
% Input
;)' = )p = input(' Pressure (bar
;)' = )t = input(' Temperature (K
% Calculation
;)v = ideal(t,p*1e5
% Plotting results
)surf(p,vol,t

)(ideal.m
)function v = ideal(t,p
)% Gas constant (J/kmol.K
% Ideal gas law

;R = 8314
;v = R*t/p

:
main
]Pressure (bar) = [1:10
Temperature (K) = 300:5:400
??? Error using ==> /
Matrix dimensions must agree.
Error in ==> C:\MATLABR11\work\ideal.m
;On line 4 ==> v = R*t/p
% Ideal gas law
Error in ==> C:\MATLABR11\work\main.m
;)On line 6 ==> v = ideal(t,p*1e5


" t p .
.
t p "
.
ideal.m ) (
:
)function v = ideal(t,p
)% Gas constant (J/kmol.K
% Ideal gas law

;R = 8314
;v = R*t./p

:
main
]Pressure (bar) = [1:10
Temperature (K) = 300:5:400
??? Error using ==> ./
Matrix dimensions must agree.
Error in ==> C:\MATLABR11\work\ideal.m
;On line 4 ==> v = R*t./p
% Ideal gas law
Error in ==> C:\MATLABR11\work\main.m
;)On line 6 ==> v = ideal(t,p*1e5

t p MATLAB:
) length(p
= ans
10
) length(t
= ans
21


.
:
)function v = ideal(t,p
;R = 8314
)% Gas constant (J/kmol.K
)for k = 1:length(p
;)v(:,k) = R*t/p(k
% Ideal gas law
end

:
main
]Pressure (bar) = [1:10
Temperature (K) = 300:5:400
??? In an assignment A(:,matrix) = B, the number of elements in the subscript of A
and the number of columns in B must be the same.
% Ideal gas law

Error in ==> C:\MATLABR11\work\ideal.m


;)On line 5 ==> v(:,k) = R*t/p(k
Error in ==> C:\MATLABR11\work\main.m
;)On line 6 ==> v = ideal(t,p*1e5


.
. ideal.m
:
)function v = ideal(t,p
;R = 8314
)% Gas constant (J/kmol.K
)for k = 1:length(p
;)v(k,:) = R*t/p(k
% Ideal gas law
end

:
main
]Pressure (bar) = [1:10
Temperature (K) = 300:5:400
??? Undefined function or variable 'vol'.
Error in ==> C:\MATLABR11\work\main.m
)On line 9 ==> surf(p,vol,t

! ideal.m
.
. . v
" " surf vol . vol"
MATLAB .
:
% Input
;)' = )p = input(' Pressure (bar
;)' = )t = input(' Temperature (K
% Calculation
;)v = ideal(t,p*1e5
% Plotting results
)surf(p,v,t

:
main
]Pressure (bar) = [1:10
Temperature (K) = 300:5:400
??? Error using ==> surface
Matrix dimensions must agree.
Error in ==> C:\MATLABR11\toolbox\matlab\graph3d\surf.m
;)}On line 59 ==> hh = surface(varargin{:
Error in ==> C:\MATLABR11\work\main.m
)On line 9 ==> surf(p,v,t

surf .
) (help
.

.
v surf " :
) size(v
= ans
10 21

t p .
:
% Input
;)' = )p = input(' Pressure (bar
;)' = )t = input(' Temperature (K
% Calculation
;)v = ideal(t,p*1e5
% Plotting results
)surf(t,p,v
)')xlabel('T (K
)')ylabel('P (bar
)')zlabel('V (m^3/kmol
)view(135,30

.
main
]Pressure (bar) = [1:10
Temperature (K) = 300:5:400

- echo keyboard
echo
. .
.

echo .
MATLAB
.

keyboard
" .
K .
return .
.
keyboard
return

!" !# $
) ('& # $ %
0

( -./

"+,

(*
11
3 4
# $ % &'4

% 67

& > *( 6"; & 0 < , = %

= D% "C 5 & A B">/ ? @ 4 ,

9:

#$

! ( ,

5 8

E
11
11

" % &'( )
11
2

3 4

% &'( )
11
2

3 4

F >/ ? 6

% &'( ) % 

F >/ ? 6

&M ' 8 R =S % &'( ) % 

'

F >/ ? 6

"

"G ? *("

. 4 % ( % &'( ) % 

% &TU

3 4 G9

.4% ( %

B ; ? &'( ) I M 8 % ( F '
? ? : 0

. 4 % ( % &'( ) % ?O 0 < 9 ) 8 11

<

(
( % N

"



B ;

G 5 L

)*

)*

) )

3 4)

%&M 9 ;

)& M 9 ;)

= +

&M

= %&M 9 ;

)*

) )

&M

) )*

&

+) ) )

&

, &

&

, &

BF < ? 2
B

&

I < , : I >C &


?

, '() * +

/& +

I *(

#$ I

( 

'C I / 6 ( %

!"

# $ % #&
, -.

, '() * +
, 3 ; ) ):&

1 23 4
5' & $ 6 $ &7

&( *

#& 

6 $8 9

)<=> # ?&@( $ A@
;) * +

+K+

+K+

& # $C

"

D&

# & # $E

D&

B! # ?&

#&

> F !

# & # $E

>

G
, -.

, '? A@ )<=> # ?&@( $

$ %
$

$!

& '%
%

"

#(

')'**&

&

')

&

')'**&

'

$%

/ 03 &'M
&'N &O3

*N

#* 6

"

$(

& *N

=
+

H *

#& > # ? * N

6 #& F

* ; $< P

'3

)03 ; ) #&

? &'M $

' ( R & # $ ; &'M


+

'

' -

' -

'

'(* +

,
-

'() * +
"

* ;R& *N

6 #&

+ ( + (,- ,(,- ,

$ $' ; );

S / $ ) &

# & $( ( ) *&'ST

"! "

!"

'() * +
-

"

)-

"

)' )

&&0

* &

/ &&0

* &

'

G 6 58C
.

& &U

H 23

'

'Q

! "#$%
/'&' 2 34& & *-

/'

&'() * $+

5& &

' , *-

&

%8

*&

& .
%' & 0' 1 %& /

%' & 0' 1 %& 6 7

/ !9

/ $"<

%8

?$

%' '

0' 1 %&

= (>

&

:.;

(%

<

%8

&( 

4' 7 $
/ %&

#
$

# $" # $

simulink

!"

$ %&
)/
*

!"# !
$

$
#"

. +, - +,

* &)

' &

#(

1 +, 0" )
*)#
* "

&/

#
3,

2
)

4" 3/56

3,

7#8 & / ) " %

#
'

"?@-

$# /A .>> ; < 3 = 4"

4" *

) ) +" 3 7

/- &

' #8 <

"?@- C#D ) = * &)

!" =<7 EF )# )

* '

$ # * &)

G/ # #") <

*)/ ;

"

4" #"

#"?H !

1 %

1 " 3

$ L)#8
3,

NA , $ & 3 ,

; J- 2 ! 7 #8 =
* 3

B3

)#

) ) B3 $ &#

$
* " 3

/!"L

&)

B3

$ K"

3,

)I
)

= F ) #" / ) )# )

+" 3

#M'H 4"

#7 0"
* &)

#& * '

&/

) ) +" 3 2

- " 3

$ P ' #- # Q ' $ &

& 3,

$)

0"

3 /-

$ )

3/!"L
*)/

% )/% %& /

"

#M'H 4" 2

$/'

#M'H ) %

* " 3 # S
W%

T% ' 4%"

)/% 3 %

* '

%' ) $ %&#
V1V

)/% 3

#3L

%%

!%

X'- #M'H 2

3/8 & #3L $ &#

%%:

#M'H

% &'U Y3 % #7 V1V!#

) #%3L % 3 /-

#3L * " 3

U %"?@- T %' %3 ,

)# 4 A

) %.
"

) ) B3 #") <

* &) # @-

# (

$ /

(
H

T' $

" U %7 2V1V!

* " 3)

%3 ,

R3

T'

U
'3
%Z
%[

)/ 3 O )/

U #9 '\

* " ?5 ) $ #3L

&) # @-

) ) B3

% (

$ /%

(U

% < #

V1V* "

*)/

)(

%H

% " 3 ) M"

&U Y3

%3 $ %&#

* &) # @- V>U #I9 V ,U


/!"L
(

3/

3 ) ) B3

$#

3 /-

* " P'

#I9

$ /

" P'

) ) )/

$ B M 3 * &)

e 4"

< %]

#^ _ ; _ )

! QD

V1V #

+ U Y3

` -#/ 2 " '


+" 3

# @- * &)

" 3

X'- #M'H

< 4" #^ _ ; _ )

a
*

&) # @- %

"/

` -#-

3 /-

' (

0" %b

d J- 3 ,

%c

* '
V-

U $)

4" 0 'g & * &) #

)
#3L R 3

V " 3h,3
$ &$)

&

#3L $ &#

" 3

&) # @- V# 4"

G/

X'- #M'H %f

U '

O V.

" 3

"U 0
NA , i

* " 3 9

&

'%

/%

4%" ; %< 3 = 4" )# 7 ^

% /'!" T%" /- % =% 4%" ; % *)#%


k/%

B% 3

4%" #%" *))#%8 $ %


4%" = 4"

/'\

&/
#

- 4"

3 /-

5 % ; %

!*

)*

!*

) %g3L %'3 #%3L $ %&#


-

2( $ &#
0" *

3 /"

)I

" 3 O !* #M'H

U =% !* $ %&+%, ) % -

)/

$#%

#%

* %% &) #%%% @-

% 3 /- % * %

%< * " 3 ) I
%%

%%

) ) B%%%3 %%%

V,/:0&' V /898938
(

%" 3 )I%
0% V
#% #"

'%

/%

=% /-

U #%%9 '\ % 3 ,
'3 #3L $ &#

) 6/

!%%%

!* +, 4"

) ) B3 %

% h? /

) #%%3L % 3 /- % %
7

< 4"

> #3L

'

/
#

/%%%

!/

/%%%- Q%%% D

01200/0324 5U
#- _

/- j <
(

"

&)
$#%%

* '

$#

0 7
$#

&) #

##

) %% /%%%

" (

$#

U #9 '\ 3 ,

% &) #% @-

)# ;

d_

) ) !* $ &+, )

$#

% ; % $# #8 <

'

B 2#

#& l =

4"

* &) #
(

= ;/D )

"H

) ( $#
*

* " )

_ $# 4"

0" '6 )# $#

'

!* =%

3;

$#

*
%

!- $ #

= ;/D )

!*

R #&

! Q

^ . +, ) j

4" /'\

h/ `"#<- 4" 0!

!6/% +,

% %

* %" 3

O
1 &)

7
, $
%,
7 7
!5 +
* "
7
7
7
7

+ 89838 2
&' + :0
0 :1200
6
7 7
+ 0 :
6
7 7
+0

/%!"L )

X'- #M'H

2 B30 - 3

% " 3 7 %^ !* )#%

R% -

%O % !*

0 7#%8

%7 "

&

) ) B3

3 $# V
U %&# 8

%e R )

#3L

%3 %3 ,

m $)

3;

%3 ,

#8

) % $ A

= /-

"

% #%M'H %
W%
% U

2)/%

o/!%
9 W

#8

% ; % #3 #") %<

i % #3 %'

<

%
3

O #3L *)/

4"

3 W

0" *

j <

$&

/'\

3W

I'
& B $#

3 ) / +" 3
)/

7"

%" 3
#

3,
no/! #8 * " 3 O

)
4H

'

*
-

4"

0" * " )

7#8

#& 3 /-

"

) %

' ; #3L

/-

3 ) ) +" 3

#8

* " 3 9
% 4%" n

'

/ 3 &

UW

$)

/-

3# 8 3 " H e 4" *)/

* " 3 9

e% )W%

'P 0!
<

<- W

* &)
* ''

+" 3
V

3/"#H
*)/

d% Q %

#%3L V.

; J%- 0 %8
1#"

U 0 %8

% ' h %, 3

#8

'3 & * &) #

V.

3,
#

o/!

'

#3L
W

#8

U08
# * " 3)

0"

&)

& $' ( (
$ #% * %" 3 %
* %

'' p'& & 4" /'\

% R M3
* " 3

$ %&# 8

0 G - nd
" -

; '5

%3 3 ,

) /%

$# 8

; '5 %

% $#% 8

3 $ &W

2W

U "# # 8

%3 $ & #

#8

))

B3

#8

3
'

/-

" - $ # 3 /*)# 8 # ) I

4%" 3 /-

2; m

% 4" ) W

/'\

#"?H ! i 3
"

Q" i- $ # V
*)/

; J-

;# '

U
; '5

;# ' W

53L * " 3 ) I

T'
!"# !

!"
/' W

X3 QD* ' q #

$/'

3 /* 3

*
#% @-

%' )

%" 3 %

X'- #M'H n

* &) # @- #3L 7 Y3 #7 3 /%A

U L$

*
3`

) *)/ %& /

& B o/!

- s\ ) /

#X3 ) /

# ( $ %&;

#"

%9

<

#3L #r * &)

3 /-

))"

e/ t6

0" $

$ # 1# ?-

& A

#B

. +, ) q/^/ 0" * " 3 0 - - I $


#% E%F ) /% )/%

)$

_3$

V " 8<U u#7+ H " /5

)I

4H

# ;_ )$

0 'g & * " 3

) " '8 i V ' ) I

;_

" /5

"

4" ! 5'& 2 ?8

$) / 0 '6
_$
)# 8

) *+,
1 +, 0" )
*)/ 3 & /

)I

V ! 7 #8 #5B" 3U

* " L

"H

* " 3
* " 3

AF-

AF-

_$&

9% T -

3 #7 _ 3 )

!"# !

# %
-

%
4" %

3,

! 7 #8 #5B" 3 4" 2

#M'H

! 7 #8 #5B" 3
*)/

"H

&W

7 L )

" 3
*

; $&

#%& %'

3 /-

3 *)/
0 'g & 2

% s\ %
* 3/

AF- )#

L $#

7#8 #X3 )

4A

" 3 O
"H

"%

v,B # 8

) )

) *+,

) L /!"L $

) $

) ) B3

"H

L FI9 - ' 4 A

_ $ & "#

3 $&

<

"H

-.

"
R#7

$# 8

=" #

) ) +" 3 - " 3 h , 3

LQ - #8

_ #M'H ) * 3 7 " Q s\

#M'H

"H

/' W
_

< "W

=" # "

) = /-

7#8

3 #&
4H
T'

#
;9

<
"H
T '

_
4"

7# *) ) )/
$# ;

" #8 <

L )

3/B H

&

$
7#

_ $ &# @

"# $ # *

" #8 <

3/B H

&
* '

) P3L

^ $' #
*
$)

_ $ &# @
m

$ P'

"#
+A7

W
P

T '

s\ ) ) #

) #8 &#8 <

# W

\ &

"# %
W

%
$/,

"H

_ #") <

0!

R #8 ") )
*)/B3 ) ) +" 3 )/

#") <
#8 <
X'-

X'"# U

"H

_$

) $

0" '6 Q )
")

! 7 #8 #5B" 3

G# +
q # $#

/ ` _#
g3L '3 &
i

d_

#") < * " 3 4 A *


#") < 0" * 3/

))

B3 V

W
* 3

01 $
Y3 O # 8
3

$ )

4"

* "# 8

&# 8
*

#8 ) 0 Y3 O

3 w

3,

"

9 0 Y3 O

) *+,

-L +, ) ) *)# 8
_ $ x7 ;

! 7 #8 #5B" 3

-.
%" '

3 9

) Y3 O # 8

!2

" 01 $

%%!"# ! T %%' %%3 ,

* %% " 3 ) %%M"

* % " 3 %O )/%
%"# T% '
:0&' % #3L

%3
$

U 9

%" @
i% 3

2 2 Y"#- %

!
'3

"# T ' 1:%

%! 7 #8 #5B%" 3 %
*)/

) ) 3/ Y"#-

) &

* &) # @-

#7 =

$
&$)

#"

= yD
9% T -

% _ $ x%7 ;

) %

_ $ x7 #") < d _

9% C
%

T ' 0"
"

1 " 3 `-# #"

B/

%P6 )

4%%" %%-

%'3 & 9 % e % %

!%

1 " 3)
> ? ? ?@?A0?

3 $#

" 3

9% T -

3 %

6-

%% _ $ x%%7 ; %% $ #%% R ) $)

% &) ; J%- #%"

5 &

< Y3 O $# 8

% &' + Y3 #7 #I9

/ )* " 3

"# T '

"i %

" 4 - /- $# 8

) 3 4

2 9

) "# T ' 4"

3 4

F %

=" #

)# A0 * '

_ $ &# @

* " ")

(!
(08
!

&

&$)

2 &# @ ` -#-

"

'

/-

* " 3 k #,
*))#8

AF-

3 #7 /_ ) 3 /-

#7U "

'

_ $ x7 ;

Y"#- 05"L #") <

3 /-

0" $ &

!' &
;m

/'\

V* " 3 ) I
! "
# $ %&
' #()*
' #
$ # ((
' #
' # ((
' #
$ # %' #
' # %' #

;)

T'

)+,
.)+,

G/ # EF&' Y3 #7 *) ) 9FF&'

!* +, 4"

EF&' 3 /3

99F&' *

2;)

0"

4*

" T -

/9

9e

7#8

Y3 O

3 /-

;# '

) 2)9 Y3 O 2esHd $ x7 ) * " 3


3 W
*)/

R ) $)

N"# - {esHd = F

U 9e
7 " ; < 3z V

#8

3 #7 T - 4" /'\
Q" iR )

"# 0

# U 9

" T -

/9

9e

7#8

Y3 O

3 W

1)/

F #"

$/0+ <00D
5/9G G, $D
>
? #
B/
% , $?

"

* '

3 #7 | H
1

"/'

;# '

) 2)9 Y3 O 2esHd $ x7 ) * " 3

*)/

3 /-

N"# - {esHd = F
/9

? ? ?@?9?
+?9 D

3 /-

#8

3 #7 T - 4" /'\
Q" i-

7 " ; < 3z V

i-#& <00 - 0

"# 0

# U 9

R )

) 9e

) Y3 O

#!- +, > = ;

F $ # * &) # @- >
#"

U 9e

R ) $)

/ ) 2 B, 4- ;

| H ) L

$#

PB, )
L

P B
!* ;

'

| H$

A \

L0

=
"

> ? ? ?@B/
9% C
= HD
>
0? #
0B/ " ? ? ?@?9? D
% , $?
+?9 ?, $?
0 +?9 D

3 #7 T - 9 e Y3 O 1.%

M 3 0"

% j% "#<- )/%
*

#& l +, 4" = 4" = /-

3 #7 _ 3 2 &)

B3 ! 0"

$# P `"#<- +, > = 4" #-d $ &Y3 #7 $ # *


/20019F2390E/ 3092

Y3 #7
& ' 3 $)
;

9= " 9
> 0A
)

") .%

= BC

" 3 O )/ ;

))

3 $#
B3

#8

)= ;

95 &

4" Y3 O $# 8

3 $# d

3 3,

"
)

e 0

0" $)

>

- A \

4 - /3

* &) # @- ) 9

"# T ' 4" n

&

6-9
9

Y3 O # 8

3 4"

?*

"

3/53 & 0

* '

:;< @

) ) } ^/-

0" # '

/ ?9?2?333 #&

9:;< " 019


9 $ 4

&# 8

$# 8

B3
## = ;

) 998I G8EE &'

> n B, > = *

@!

$#

!- !- = 4" *, / 18 /988 &'

- "

95

# # 200

*)/

) F i-#& [>

)#
#3L

) *)#

Y3 O

* " 3 9 2

Y3 O # 8

3 #7 Y3 O $# 8

L $/' )
$ "

#M'H * " 3 h , 3
* &)

B3

) ) )/

"
-

7
)

3 1Z%

'

#M'H d _
$

3 O $ &# 8

%
3

)/

'%

#%M'H ) ) 9 /%'\ %

<00 %- #I%9 0 % % U 0+9+ <00


" %%%5 $ %%%'

#%%% @

%%% $ %%%

)/%

) 9

#8 *

=A , Y3 O

&/ 7
7

% )) 9 %
R ) /

* " ) 53
%(L

$ %

R '3

"

# @ 4" "

'

Y3 #7

F
3 )/ 3 *)/
53
/

3/

'"i8

#%%% @- * %%% " 3 h %%%, 3


_ )
" 3

&# @ #"

"

7 "

3 )/ 3 #M'H 2

)/% 3 h %, 3
%%%

3 #7 Y3 O

V B, 4" = $ # U .%

) Y"#- % 4%" ) 9 * %

%%% 9&' $ %%%& %%%AH %%% i%%%-#&

V %%%

%%% " 3 h %%%, 3

%3 #7 T %- /%'\ %

% = %F

%3 Y3 O 4" =<7 2) / 0" )

%%%3 +" %%% 3 $ #%%%

* " 3 t" - 2
) ) +" % 3

% 7#8

< 2Y3 #7 ) F ) *V) 9

%%%<- * %%% " 3 )

%%%'"i8 * %%% ' h %%%, 3 )

" 92
) ) # @-

$/'
7

" /%%%5 2
=8

&o/! * &) # @- 030<

d_

;s%%%_

%%%

7
"H
* " 3

$ %&# @

% %M3L

* '

$ %&k/%

q #

53 ;9 ; o/! $
"H

_ )

P3

2 3

)W

w )#H

)/

* 3
*

#") <
'

#% @- #I%9 %
=%

% #I9

X'-

?8

'

#!-

) ) +" 3

/'

#M'H R M3 #

)$
$

!
/9

)#
4A

#") < R %

* " 34A
* " 3

!* +, >

k/

;9 P 3 W

1[%

)/ 3
)

& B 2)/

www.esud83.mihanblog.com
email:aminnima2@gmail.com
:
tel :09166420367

&)
)

You might also like