Azzera filtri
Azzera filtri

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

2 visualizzazioni (ultimi 30 giorni)
Kyle Langford
Kyle Langford il 29 Apr 2023
Risposto: Walter Roberson il 29 Apr 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.

Risposta accettata

Walter Roberson
Walter Roberson il 29 Apr 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.

Più risposte (0)

Categorie

Scopri di più su Programming in Help Center e File Exchange

Prodotti


Release

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by