how to write this equation in matlab? L and q are variable

1 visualización (últimos 30 días)
Abdollah Sedaghat
Abdollah Sedaghat el 14 de Ag. de 2018
Comentada: Abdollah Sedaghat el 15 de Ag. de 2018

Respuestas (1)

Matthew Cribb
Matthew Cribb el 15 de Ag. de 2018
Editada: Matthew Cribb el 15 de Ag. de 2018
%The format of the equations should be correct. Af for plotting and evaluating the integral, I am not correct (I didn't get it to work) but hopefully this is a start. If you have questions about integrating within Matlab, type "help integrate" into the command window. (Also try "help fplot" etc).
Check out the attached document for more info on function handles.
%Define constants (for example)
del=2; delta = 3; alpha=4; L=5; q_c = 10;
%Create the function inside the integral:
f =@(q) q.^del.*coth(q)/((del+q.^del.*L.^del)/(del.*alpha)).^(del+alpha)
f_integral = integral(f,0,q_c)
%The Left Hand Side (LHS) vs RHS:
%F = E/E_0
F = del+delta.^del.*L.^del.*f_integral %RHS
Let me know if this helps.

Categorías

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

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by