Docsity
Docsity

Prepara tus exámenes
Prepara tus exámenes

Prepara tus exámenes y mejora tus resultados gracias a la gran cantidad de recursos disponibles en Docsity


Consigue puntos base para descargar
Consigue puntos base para descargar

Gana puntos ayudando a otros estudiantes o consíguelos activando un Plan Premium


Orientación Universidad
Orientación Universidad

La biologia en la vida, Esquemas y mapas conceptuales de Biología general

Es tener un sin fin de hacersers y no hacer nada

Tipo: Esquemas y mapas conceptuales

2020/2021

Subido el 22/02/2023

xiomara-huaman-1
xiomara-huaman-1 🇵🇪

7 documentos

1 / 2

Toggle sidebar

Esta página no es visible en la vista previa

¡No te pierdas las partes importantes!

bg1
DERIVACIÓN NUMÉRICA
ALGORITMO PARA DETERMINAR LA GRÁFICA DE UNA FUNCIÓN
x = 0:0.1:5;
f = x.^5 - 3*x.^4 - 11*x.^3 + 27*x.^2 + 10*x - 24;
figure
grid on
plot(x,f)
title('polinomio')
ALGORITMO PARA DETERMINAR LA DERIVADA DE UNA FUNCIÓN
syms x
y = x.^3 + 2*x.^2 - x + 3;
derivada= diff(y)
syms x
diff(x+8*cos(x),1)
syms x
diff(x.^2+8*cos(x),2) código para hallar la segunda derivada
ALGORITMO PARA DETERMINAR LA TERCERA DERIVADA DE UNA FUNCIÓN
EVALUADA EN UN VALOR.
clear all
syms x
fx=input('Introduce una función con respecto a x:');
x=input('Introduce el valor de x1:');
f1x=diff(fx,1);
f2x=diff(fx,2);
f3x=diff(fx,3);
fprintf('f(x1)=%d,f''(x1)=%d,f''''(x1)=%d,f''''''(x1)=%d
\n',eval(fx),eval(f1x),eval(f2x),eval(f3x))
ALGORITMO PARA DETERMINAR LA GRÁFICA DE LA FUNCIÓN Y LA GRÁFICA
DE LA DERIVADA DE LA FUNCIÓN EN UN INTERVALO
x = -5:.5:5;
y = x.^3 + 2*x.^2 - x + 3;
dy = diff(y)./diff(x);
dx = x(2:length(x));
subplot(1,2,1),
plot(x, y), grid on, title('y = x^3 + 2x^2 - x + 3'),
xlabel('x'),
gtext('y')
subplot(1,2,2),
plot(dx, dy, '-or'), grid on, title('dy/dx = 3x^2 + 4x - 1'),
xlabel('x'),
pf2

Vista previa parcial del texto

¡Descarga La biologia en la vida y más Esquemas y mapas conceptuales en PDF de Biología general solo en Docsity!

DERIVACIÓN NUMÉRICA

ALGORITMO PARA DETERMINAR LA GRÁFICA DE UNA FUNCIÓN

x = 0:0.1:5; f = x.^5 - 3x.^4 - 11x.^3 + 27x.^2 + 10x - 24; figure grid on plot(x,f) title('polinomio') ALGORITMO PARA DETERMINAR LA DERIVADA DE UNA FUNCIÓN syms x y = x.^3 + 2x.^2 - x + 3; derivada= diff(y) syms x diff(x+8cos(x), 1 ) syms x diff(x.^2+8cos(x),2) código para hallar la segunda derivada ALGORITMO PARA DETERMINAR LA TERCERA DERIVADA DE UNA FUNCIÓN EVALUADA EN UN VALOR. clear all syms x fx=input('Introduce una función con respecto a x:'); x=input('Introduce el valor de x1:'); f1x=diff(fx,1); f2x=diff(fx,2); f3x=diff(fx,3); fprintf('f(x1)=%d,f''(x1)=%d,f''''(x1)=%d,f''''''(x1)=%d \n',eval(fx),eval(f1x),eval(f2x),eval(f3x)) ALGORITMO PARA DETERMINAR LA GRÁFICA DE LA FUNCIÓN Y LA GRÁFICA DE LA DERIVADA DE LA FUNCIÓN EN UN INTERVALO x = - 5:.5:5; y = x.^3 + 2x.^2 - x + 3; dy = diff(y)./diff(x); dx = x(2:length(x)); subplot(1,2,1), plot(x, y), grid on, title('y = x^3 + 2x^2 - x + 3'), xlabel('x'), gtext('y') subplot(1,2,2), plot(dx, dy, '-or'), grid on, title('dy/dx = 3x^2 + 4x - 1'), xlabel('x'),

ALGORITMO PARA DETERMINAR LA GRÁFICA DE LA DERIVADA DE UNA

FUNCIÓN EN UN INTERVALO

x = 0:0.1:5; f = x.^5 - 3x.^4 - 11x.^3 + 27x.^2 + 10x - 24; figure grid on plot(x,f) title('polinomio') figure df = diff(f)./diff(x); xd = x(2:length(x)); plot(xd, df) title('Derivada de f(x)') ALGORITMO PARA DETERMINAR LA GRÁFICA DE LA CURVA,LA GRÁFICA DE LA DERIVADA y VARIACIÓN DE LOS DATOS RECOLECTADOS EN UNA TABLA

t=[1 2 3 6 9 11 16 20 23];

h=[13 17 19 25 27 24 21 18 15];

dhdt=diff(h)./diff(t);

t1=t(1:end-1);

h1=h(1:end-1);

v1=dhdt

subplot(2, 1, 1), plot(t,h);

title('gráfico: Tiempo-Distancia')

xlabel('Tiempo')

ylabel('Distancia')

grid on

dh = diff(h)./diff(t);

td = t(2:length(t));

subplot(2, 1, 2),plot(td, dh);

title('gráfico Tiempo-Velocidad')

xlabel('Tiempo')

ylabel('Velocidad')

grid on