Está en la página 1de 3

Apuntes del curso Analisis Numerico y Programación

PROGRAMA:
1. Introducción a Matlab
2. Ecuaciones no lineales
3. Sistemas de ecuaciones lineales
4. Sistemas de ecuaciones no lineales
5. Interpolación y aproximación por mínimos cuadrados
6. Diferenciación e interación numérica
7. Sistemas de ecuaciones diferenciales de primer orden

BIBLIOGRAFÍA:
1. Manual de Análisis Numérico y Programación
2. ECHEVERRÍA: https://drive.google.com/file/d/1_S425sJGs2UDqGr-gg98bsDuGfp-0vaG/view?
usp=sharing
3. MANUAL BÁSICO DE MATLAB, CRISTINA CASADO: https://drive.google.com/file/d/18zgkwzX-
j0j4AKtc14HLxGszy-pQdNC5/view?usp=sharing
4. AN INTRODUCTION WITH APPLICATIONS, AMOS GILAT: https://drive.google.com/file/d/
1fJ0tLdR4HagTfEeT5-weQSCO79700WT_/view?usp=sharing
5. HAND BOOK MATLAB: https://drive.google.com/file/d/1c7xiverp0Xb4nQGuzG8VsdfolUZLoqpj/view?
usp=sharing
6. HAND BOOK MATLAB MATRICES: https://drive.google.com/file/d/1sLl4kYY7PL-s08mYUGR1m3bRb-
ff5faL/view?usp=sharing
7. EJERCICIOS PARA MATLAB: https://drive.google.com/file/d/1WPsIMw4t0Zbmvl91YlgnoXIgTKjn6nte/
view?usp=sharing
8. BURDEN: https://drive.google.com/file/d/1hUEPK8X_timqN5a49uRnPZxhhjEcaioF/view?usp=sharing
9. INGENIERÍA QUÍMICA: https://drive.google.com/file/d/1SR-mVsNMnzfQ6Bj4WGbw7tDDVtULYMOB/
view?usp=sharing
10. MATLAB PROGRAMACIÓN LOGA: https://drive.google.com/file/d/1PPwqiVQ3cyxiybgS5DKvNi-
a6i6an51N/view?usp=sharing
11. CHAPRA: https://drive.google.com/file/d/1JF5hKgGeWwqoshrwvsG0O8WsC1hJvOat/view?usp=sharing
12. NIEVES: https://drive.google.com/file/d/17qU4w5KFpJC8L2DmHWn5y7d7ZnOuuX7C/view?usp=sharing
13. TROMBA: https://drive.google.com/file/d/14q09mJNKX6GBfXjA91j3HrDp6hbZ5jgX/view?usp=sharing
14. MATHEWS: https://drive.google.com/file/d/10NiXjLpZ0uncLtabjSb2lNHRM5CWnEZo/view?usp=sharing
15. Matlab programación: https://drive.google.com/file/d/1Bmp_VoLvmR7SnbiQwUbGuHsCKVuiUYxp/view?
usp=sharing

1
UNIDAD 1
INTRODUCCIÓN A MATLAB
OBJETIVO:

1. Instrucciones generales
2. Vectores y matrices
3. Gráficos 2D y 3D
4. Sentencias de programación

I. OPERACIONES ARITMÉTICAS Y ALGUNAS FUNCIONES


En Matlab hay que iniciar asignando valores: x=10;

Al terminar una sentencia es necesario poner punto y coma (;) para que no se expanda o exprese la sentencia.

Sean a,b reales o complejos:

Álgebra | Matlab

a+b | a+b

a-b | a-b

ab | a*b

| a/b, para cualquier b diferente de 0

| a^n

| sqrt(a) ó a^(1/2)

senx | sin(x) [en radianes]

cosx | cos(x) '''

tanx | tan(x) '''

cotx | cot(x) '''

secx | sec(x) '''

cosecx | csc(x) '''

senx | sind(x) [en grados] (agregar d al final, aplica para todas las trigonométricas)

cosx | cosd(x) '''

... | ... '''

cosecx | cscd(x) '''

2
arcsenx | asin(x) (agregar a al principio, aplica para todas las trigonométricas)

arccosx | acos(x)

... | ...

arccosecx | acsc(x)

senhx | sinh(x) (agregar h al final, aplica para todas las trigonométricas)

coshx | cosh(x)

... | ...

cschx | csch(x)

| exp(x)

ln(x) | log(x)

| log10(x)

= | log(x)/log(a)

|x| | abs(x)

En la ventana Command Window

También podría gustarte