Borrar filtros
Borrar filtros

Integration problem for a scalar

1 visualización (últimos 30 días)
Thomas Mroczkowski
Thomas Mroczkowski el 11 de Dic. de 2020
Respondida: Walter Roberson el 11 de Dic. de 2020
The code below generates Cp based off my program. Cp is a scalar. How would I write the integral of Cp with respect to Temp2? There are no specific bounds for this integration.
T2=78
A = SH(1,1);
B = SH(1,2);
C = SH(1,3);
Cp = A + (B * T2) + (C * (T2^2));
fun= @(T2)Cp;
DeltaH = integral(fun,0,inf);

Respuesta aceptada

Walter Roberson
Walter Roberson el 11 de Dic. de 2020
syms T2
A = SH(1,1);
B = SH(1,2);
C = SH(1,3);
Cp = A + (B * T2) + (C * (T2^2));
int(Cp, T2)

Más respuestas (0)

Categorías

Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by