Borrar filtros
Borrar filtros

Functions of I, for i=1, n, n-1

2 visualizaciones (últimos 30 días)
Kyle Langford
Kyle Langford el 29 de Abr. de 2023
Respondida: Walter Roberson el 29 de Abr. de 2023
I have the equation:
dT = (a/r) * ((T(i+1) - T(i-1))/2*dr) + r*((T(i+1) - T(i) + T(i-1)) / dr^2) + q/cp*rho;
I want to plug in values for i, such as i=1, i=2:n-2, and i=n-1. where n=51
I am not sure how to go about this.

Respuesta aceptada

Walter Roberson
Walter Roberson el 29 de Abr. de 2023
dT = @(i) (a/r) * ((T(i+1) - T(i-1))/2*dr) + r*((T(i+1) - T(i) + T(i-1)) / dr^2) + q/cp*rho;
dT(2:n-2)
Caution, dT(1) will fail.

Más respuestas (0)

Categorías

Más información sobre Programming en Help Center y File Exchange.

Productos


Versión

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by