0% found this document useful (0 votes)
32 views8 pages

Introducción Al Entorno de Trabajo: Matlab: Universidad Privada Antenor Orrego

This document contains 10 sections summarizing calculations and operations performed in the MATLAB programming environment. It shows basic arithmetic operations, logarithmic and exponential functions, matrix operations including multiplication and inversion, mean and standard deviation calculations, and solving systems of linear equations. The document appears to be examples from a university course on telecommunications demonstrating introductory MATLAB skills.

Uploaded by

Luis Ruiz Mejia
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
32 views8 pages

Introducción Al Entorno de Trabajo: Matlab: Universidad Privada Antenor Orrego

This document contains 10 sections summarizing calculations and operations performed in the MATLAB programming environment. It shows basic arithmetic operations, logarithmic and exponential functions, matrix operations including multiplication and inversion, mean and standard deviation calculations, and solving systems of linear equations. The document appears to be examples from a university course on telecommunications demonstrating introductory MATLAB skills.

Uploaded by

Luis Ruiz Mejia
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 8

UNIVERSIDAD PRIVADA ANTENOR ORREGO

Curso:
Telecomunicaciones II

Tema:

Introduccin al entorno de trabajo: MatLab


(laboratorio 1)

Profesor:

Ing. Albertis Florian

Alumna:

Reyes Gonzales Dina

Ciclo:
VII

Trujillo ---- 2014

CUADRO N01
1.>> 186*31

ans =

5766
2.>> 124312-5478

ans =

118834
3.>> 17456^0.4

ans =

49.7483
4.>> 711/134

ans =

5.3060

CUADRO N02

1.>> v=10*log(((exp(12)+120))/(abs(170^0.5+8.1^2)))

v=

76.3575
2.>> x=sin((v+18)/23)

x=

-0.8197
3.>> z=114*v^x

z=

3.2622

CUADRO N03
1.>> m=[8,4,5,2,7]

m=

>> n=[3;7;2;4]

n=

3
7
2
4

>> n*m

ans =

24 12 15

6 21

56 28 35 14 49
16

8 10

4 14

32 16 20

8 28

CUADRO N4
1.>> m(2)=7

m=

CUADRO N5
1.>> mean(n)

ans =

CUADRO N6
1.>> f=[3,8,-2,15,3]

f=

8 -2 15

>> g=[4,0,4,-12,2]

g=

4 -12

>> f.*g

ans =

12

0 -8 -180

CUADRO N07
1.>> A=[2,-1,4;6,9,-4;0,2,1]

A=

2 -1

9 -4

>> k=A(:,2)

k=

-1
9
2

CUADRO N8
1.>> B=[2,8,5,6,4;1,3,14,4,0;0,8,6,1,0;9,9,1,2,1;10,3,0,0,7]

B=

3 14

10

>> C=inv(B)

C=

-0.0511 0.0478 -0.0856 0.1007 0.0148


0.0135 -0.0576 0.1207 0.0142 -0.0098
-0.0443 0.0718 0.0414 -0.0312 0.0298
0.1578 0.0301 -0.2139 0.0734 -0.1007

0.0673 -0.0436 0.0706 -0.1499 0.1258

CUADRO N09
1.>> A=[3,4,-6,0,5;2,-12,0,0,1;-1,1,-14,1,1;0,10,10,-1,-3;2,-3,0,1,0]

A=

4 -6

1 -14

2 -12
-1

0 10 10 -1 -3
2 -3

>> B=[-8;10;20;6;-5]

B=

-8
10
20
6
-5

>> SOLUCION=inv(A)*B

SOLUCION =

7.4625
-0.4932

-4.3003
-21.4046
-10.8433

CUADRO N10

>> suma

M=

You might also like