24.02.2013 Views

A1 Matlab

A1 Matlab

A1 Matlab

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Generisanje vektora<br />

• Vektor sukcesivnih celobrojnih vrednosti iz itervala [a,b]<br />

x = a : b % “operator” “:”<br />

• Vektor vrednosti iz itervala [a,b] sa rastojanjem (korakom) c<br />

x = a : c : b<br />

» x = 1 : 6<br />

x =<br />

1 2 3 4 5 6<br />

» x = 2 : 3 : 13<br />

x =<br />

2 5 8 11<br />

» x = 2 : 0.2 : 3<br />

x =<br />

2.0000 2.2000 2.4000 2.6000 2.8000 3.0000<br />

» x = 2 : -1 : -2<br />

x =<br />

2 1 0 -1 -2

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!