Filter löschen
Filter löschen

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

2 Ansichten (letzte 30 Tage)
Kyle Langford
Kyle Langford am 29 Apr. 2023
Beantwortet: Walter Roberson am 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.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 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.

Weitere Antworten (0)

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Produkte


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by