0% found this document useful (0 votes)
18K views16 pages

Matriz 1

The document contains 13 matrices of varying dimensions that have been reduced to row echelon form using the rref() function in MATLAB. For each matrix, the original matrix and reduced row echelon form are provided.
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)
18K views16 pages

Matriz 1

The document contains 13 matrices of varying dimensions that have been reduced to row echelon form using the rref() function in MATLAB. For each matrix, the original matrix and reduced row echelon form are provided.
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/ 16

- MATRIZ 1

>> B2= [2 3 4 5 6 8; 5 4 5.5 2 1 4; 5 6 9 3.2 6 6; 7 1 7 5 5 1; 2 2 2 5 5 4]

B2 =

2.0000 3.0000 4.0000 5.0000 6.0000 8.0000

5.0000 4.0000 5.5000 2.0000 1.0000 4.0000

5.0000 6.0000 9.0000 3.2000 6.0000 6.0000

7.0000 1.0000 7.0000 5.0000 5.0000 1.0000

2.0000 2.0000 2.0000 5.0000 5.0000 4.0000

>> R=rref(B2)

R=

1.0000 0 0 0 0 -4.1000

0 1.0000 0 0 0 0.0307

0 0 1.0000 0 0 3.5061

0 0 0 1.0000 0 4.0682

0 0 0 0 1.0000 -3.0429

- MATRIZ 2
>> B = [2 3 4 5 6 8; 5 4 3 2 1 4; 5 6 9 3 6 6; 7 1 2 5 5 1; 2 2 2 3 5 4]

B=

2 3 4 5 6 8

5 4 3 2 1 4

5 6 9 3 6 6
7 1 2 5 5 1

2 2 2 3 5 4

>> R=rref[B]

>> R=rref(B)

R=

1.0000 0 0 0 0 -0.9076

0 1.0000 0 0 0 1.5714

0 0 1.0000 0 0 -0.1765

0 0 0 1.0000 0 1.5546

0 0 0 0 1.0000 -0.3277

- MATRIZ 3
>> H = [2 3 4 5 6; 5 4 3 2 1; 5 6 9 3 6; 7 1 -8 5 5; 2 2 2 3 -6]

H=

2 3 4 5 6

5 4 3 2 1

5 6 9 3 6

7 1 -8 5 5

2 2 2 3 -6

>> R=rref(H)

R=
1 0 0 0 0

0 1 0 0 0

0 0 1 0 0

0 0 0 1 0

0 0 0 0 1

- MATRIZ 4
>> a = [12 1 3 4 3 -10; 1 2 3 4 5 6; 11 12 22 9 4 1; 1 4 5 6 7 12; 44 2 5 23 2 1]

a=

12 1 3 4 3 -10

1 2 3 4 5 6

11 12 22 9 4 1

1 4 5 6 7 12

44 2 5 23 2 1

>> R=rref(a)

R=

1.0000 0 0 0 0 -1.3516

0 1.0000 0 0 0 2.8183

0 0 1.0000 0 0 -1.8309

0 0 0 1.0000 0 2.8553

0 0 0 0 1.0000 -0.8427

- MATRIZ 5
>> g = [12 1 3 11 3 -10; 1 2 3 5 5 6; 11 12 22 9 4 1; 1 4 5 6 7 12; 44 2 5 23 2 1]
g=

12 1 3 11 3 -10

1 2 3 5 5 6

11 12 22 9 4 1

1 4 5 6 7 12

44 2 5 23 2 1

>> R=rref(g)

R=

1.0000 0 0 0 0 2.6106

0 1.0000 0 0 0 -0.9435

0 0 1.0000 0 0 0.3503

0 0 0 1.0000 0 -5.4962

0 0 0 0 1.0000 6.3413

- MATRIZ 6
>> n = [12 1 3 11 3 -10; 1 2 3 5 5 6; 11 12 22 12 4 1; 1 4 7 6 7 12; 44 54 5 23 2 1]

n=

12 1 3 11 3 -10

1 2 3 5 5 6

11 12 22 12 4 1

1 4 7 6 7 12

44 54 5 23 2 1
>> R=rref(n)

R=

1.0000 0 0 0 0 0.4900

0 1.0000 0 0 0 0.5104

0 0 1.0000 0 0 0.2705

0 0 0 1.0000 0 -2.4260

0 0 0 0 1.0000 3.1616

- MATRIZ 7

>> c = [12 1 3 11 3 -10; 1 2 3 -5 5 6; -11 12 22 9 4 1; 1 7 5 22 7 12; 44 1 5 23 23 1]

c=

12 1 3 11 3 -10

1 2 3 -5 5 6

-11 12 22 9 4 1

1 7 5 22 7 12

44 1 5 23 23 1

>> R=reef(c)

Undefined function or variable 'reef'.

Did you mean:

>> R=rref(c)
R=

1.0000 0 0 0 0 -1.7495

0 1.0000 0 0 0 -2.3315

0 0 1.0000 0 0 -0.3059

0 0 0 1.0000 0 0.4461

0 0 0 0 1.0000 3.1122

- MATRIZ 8

> x1 = [12 1 3 11 3 -10; 1 2 3 5 5 6; 11 12 22 18 4 1; 1 4 7 0 7 12; 44 54 -5 23 2 1]

x1 =

12 1 3 11 3 -10

1 2 3 5 5 6

11 12 22 18 4 1

1 4 7 0 7 12

44 54 -5 23 2 1

>> R=rref(x1)

R=

1.0000 0 0 0 0 -0.9812

0 1.0000 0 0 0 0.8961

0 0 1.0000 0 0 0.0457

0 0 0 1.0000 0 -0.2863

0 0 0 0 1.0000 1.2967
- MATRIZ 9
> x2 = [12 1 3 11 3 -10; 1 2 3 5 5 6; 11 12 22 18 4 1; 1 4 7 6 7 -12; 44 54 5 23 2 0]

x2 =

12 1 3 11 3 -10

1 2 3 5 5 6

11 12 22 18 4 1

1 4 7 6 7 -12

44 54 5 23 2 0

>> R=reef(x2)

Undefined function or variable 'reef'.

Did you mean:

>> R=rref(x2)

R=

1.0000 0 0 0 0 -8.8434

0 1.0000 0 0 0 2.9384

0 0 1.0000 0 0 -5.5892

0 0 0 1.0000 0 11.8137

0 0 0 0 1.0000 -6.6668

- MATRIZ 10
>> x3 = [12 1 3 11 3 -10; 1 2 3 5 5 6; 11 1 22 18 4 1; 1 22 7 -6 -7 -12; 44 54 5 23 -55 0]

x3 =

12 1 3 11 3 -10
1 2 3 5 5 6
11 1 22 18 4 1
1 22 7 -6 -7 -12
44 54 5 23 -55 0

>> R=reef(x3)
Undefined function or variable 'reef'.

Did you mean:


>> R=rref(x3)

R=

1.0000 0 0 0 0 -3.3528
0 1.0000 0 0 0 0.3755
0 0 1.0000 0 0 -0.7197
0 0 0 1.0000 0 3.1950
0 0 0 0 1.0000 -1.0429

- MATRIZ 11

>> x4 = [-12 9 3 11 3 -10; 1 0 3 5 5 6; 11 11 22 18 4 1; 1 22 7 -6 -7 -12; 44 54 5 23 -55 0]

x4 =

-12 9 3 11 3 -10

1 0 3 5 5 6

11 11 22 18 4 1

1 22 7 -6 -7 -12

44 54 5 23 -55 0

>> R=reef(x4)
Undefined function or variable 'reef'.

Did you mean:

>> R=rref(x4)

R=

1.0000 0 0 0 0 1.3711

0 1.0000 0 0 0 0.3326

0 0 1.0000 0 0 -1.2936

0 0 0 1.0000 0 0.2793

0 0 0 0 1.0000 1.4227

- MATRIZ 12

>> x4 = [-12 9 3 11 3 -10; 1 0 -3 5 11 6; 11 11 29 18 4 1; 1 9 7 -6 -7 -12; 44 98 5 23 -55 0]

x4 =

-12 9 3 11 3 -10

1 0 -3 5 11 6

11 11 29 18 4 1

1 9 7 -6 -7 -12

44 98 5 23 -55 0

>> R=reef(X4)

Undefined function or variable 'X4'.

Did you mean:


>> R=rref(x4)

R=

1.0000 0 0 0 0 0.9236

0 1.0000 0 0 0 -0.5530

0 0 1.0000 0 0 -0.5394

0 0 0 1.0000 0 0.6989

0 0 0 0 1.0000 -0.0033

- MATRIZ 13

>> x6 = [-12 9 3 11 3 -10; 1 17 -3 0 11 0; 11 11 0 18 4 1; 1 9 7 -6 -7 -12; 0 98 0 23 -55 0]

x6 =

-12 9 3 11 3 -10

1 17 -3 0 11 0

11 11 0 18 4 1

1 9 7 -6 -7 -12

0 98 0 23 -55 0

>> R=reef(x6)

Undefined function or variable 'reef'.

Did you mean:

>> R=rref(x6)

R=
1.0000 0 0 0 0 0.2574

0 1.0000 0 0 0 -0.1581

0 0 1.0000 0 0 -1.7624

0 0 0 1.0000 0 0.0526

0 0 0 0 1.0000 -0.2597

- MATRIZ 14
>> x7 = [-12 9 3 11 3 -10; 1 0 -3 0 -11 0; 11 -11 0 18 4 1; 1 91 7 -6 -7 -12; 0 9 0 23 -55 0]

x7 =

-12 9 3 11 3 -10

1 0 -3 0 -11 0

11 -11 0 18 4 1

1 91 7 -6 -7 -12

0 9 0 23 -55 0

>> R=reef(x7)

Undefined function or variable 'reef'.

Did you mean:

>> R=rref(x7)

R=

1.0000 0 0 0 0 0.4956

0 1.0000 0 0 0 -0.2403

0 0 1.0000 0 0 0.8502
0 0 0 1.0000 0 -0.3527

0 0 0 0 1.0000 -0.1868

- MATRIZ 15

x8 = [-12 9 3 1 3 -10; 1 0 -3 0 -11 0; 11 81 0 0 4 1; 1 91 7 6 -7 -12; 0 9 0 23 -55 0]

x8 =

-12 9 3 1 3 -10
1 0 -3 0 -11 0
11 81 0 0 4 1
1 91 7 6 -7 -12
0 9 0 23 -55 0

>> R=rref(x8)

R=

1.0000 0 0 0 0 0.6723
0 1.0000 0 0 0 -0.0947
0 0 1.0000 0 0 -0.9458
0 0 0 1.0000 0 0.8000
0 0 0 0 1.0000 0.3191

- MATRIZ 16
>> x9 = [-1 9 -3 1 3 -10; 1 0 -3 0 -11 0; 11 1 0 0 4 1; 1 91 7 6 -7 12; 0 9 0 23 -5 0]

x9 =

-1 9 -3 1 3 -10

1 0 -3 0 -11 0

11 1 0 0 4 1

1 91 7 6 -7 12

0 9 0 23 -5 0
>> R=rref(x9)

R=

1.0000 0 0 0 0 0.3187

0 1.0000 0 0 0 -0.0903

0 0 1.0000 0 0 2.3205

0 0 0 1.0000 0 -0.0960

0 0 0 0 1.0000 -0.6039

- MATRIZ 17
>> x10 = [-1 9 -3 1 43 -10; 12 0 -3 0 -11 0; 11 12 0 0 4 1; 1 91 4 6 -7 12; 0 9 10 23 -5 0]

x10 =

-1 9 -3 1 43 -10

12 0 -3 0 -11 0

11 12 0 0 4 1

1 91 4 6 -7 12

0 9 10 23 -5 0

>> R=reef(X10)

R=

1.0000 0 0 0 0 0.0387

0 1.0000 0 0 0 0.1099

0 0 1.0000 0 0 0.8363

0 0 0 1.0000 0 -0.4470
0 0 0 0 1.0000 -0.1859

- MATRIZ 18
>> x11 = [-1 9 -3 1 43 -10; 12 1 -3 10 -22 0; 11 12 2 12 4 1; 1 91 4 6 -7 12; 0 9 10 23 -5 0]

x11 =

-1 9 -3 1 43 -10

12 1 -3 10 -22 0

11 12 2 12 4 1

1 91 4 6 -7 12

0 9 10 23 -5 0

>> R=reef(x11)

>> R=rref(x11)

R=

1.0000 0 0 0 0 0.4336

0 1.0000 0 0 0 0.1034

0 0 1.0000 0 0 1.0869

0 0 0 1.0000 0 -0.5469

0 0 0 0 1.0000 -0.1556

- MATRIZ 19
>> x12 = [-1 9 -0 12 43 -10; 12 1 -3 10 -22 20; 11 12 2 0 4 1; 0 91 4 6 -7 12; 0 9 10 23 -5 0]

x12 =
-1 9 0 12 43 -10

12 1 -3 10 -22 20

11 12 2 0 4 1

0 91 4 6 -7 12

0 9 10 23 -5 0

>> R=reef(x12)

R=

1.0000 0 0 0 0 0.3122

0 1.0000 0 0 0 0.1315

0 0 1.0000 0 0 -1.2666

0 0 0 1.0000 0 0.4189

0 0 0 0 1.0000 -0.3697

-MATRIZ 20

>> x13 = [-1 0 -0 0 43 -10; 12 1 -3 10 -2 0; 1 12 2 0 4 1; 0 91 4 6 -7 1; 0 9 0 3 -5 0]

x13 =

-1 0 0 0 43 -10

12 1 -3 10 -2 0

1 12 2 0 4 1

0 91 4 6 -7 1

0 9 0 3 -5 0
>> R=reef(x13)

R=

1.0000 0 0 0 0 0.4310

0 1.0000 0 0 0 -0.0255

0 0 1.0000 0 0 0.8827

0 0 0 1.0000 0 -0.2943

0 0 0 0 1.0000 -0.2225

You might also like