photo

Quinten


University of Mississippi

Con actividad desde 2016

Followers: 0   Following: 0

Mensaje

Estadística

MATLAB Answers

6 Preguntas
0 Respuestas

CLASIFICACIÓN
38.609
of 300.343

REPUTACIÓN
1

CONTRIBUCIONES
6 Preguntas
0 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.0%

VOTOS RECIBIDOS
0

CLASIFICACIÓN
 of 20.926

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 168.172

CONTRIBUCIONES
0 Problemas
0 Soluciones

PUNTUACIÓN
0

NÚMERO DE INSIGNIAS
0

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

Feeds

Ver por

Pregunta


How can i implement the damping coefficient into my codes?
clear all clc c = [5 40 200]; m = 20; k = 20; h = 0.5; tn = 15; y = [1 0]; y01 = y(1); y02 = y(2); ...

casi 9 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Apply Gauss Quadrature formula to the following equation
given the equation d = gm/c integral [0,10] [1 - exp(-(c/m)t)]dt g = 9.8 c = 12.5 m = 68.1 employ two- through si...

casi 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Calculate f(4) using newton's interpolating polynomials of order 1 through 4. Choose your base points to attain good accuracy.
x = [1 2 3 5 7 8]; y = [3 6 19 99 291 444]; I know I need a polval function like xx = 1:8; yy = polyval(xx,n); ...

casi 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Determine the roots of the simultaneous nonlinear equation by fixed point iterations
(x-4)^2 + (y-4)^2 = 5 x^2 + y^2 = 16 here's my code f = @(x) (5 - (y-4).^2)^(1/2) + 4; g = @(y) (16 - x.^2...

alrededor de 9 años hace | 2 respuestas | 0

2

respuestas

Pregunta


Use crout method to find L and U, then use L and U to obtain a solution
function [L,U]=LU_Crout(A,c) %Function to carryout LU factorization using Crout's Algorithm m=length(A); n = length(c); ...

alrededor de 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How can I code a naive gauss elimination to show step by step after each elimination?
I have this 3x3 matrix and my professor wants me to code this where it shows the steps for the forward and backwards elimination...

alrededor de 9 años hace | 0 respuestas | 0

0

respuestas