mathematical model into matlab
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
how can i write the following mathematical model in MATLAB and get answer of (q) for any value of (t) that i want to put in
q(t)= (6.25* 10^9)/(t+500)^3
0 comentarios
Respuestas (2)
Walter Roberson
el 6 de Mayo de 2020
Editada: Walter Roberson
el 6 de Mayo de 2020
q = @(t) (6.25* 10^9)./(t+500).^3
This will work for vectors or arrays of t.
5 comentarios
Walter Roberson
el 6 de Mayo de 2020
Indeed you did email me, but I always assume that email is confidential unless the sender says otherwise. It would not be proper for me to respond in public to confidential information.
Ver también
Categorías
Más información sobre Calculus en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!