How to convert the equation to MATLab code
159 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Help converting
Risposte (9)
Thomas Rosin
il 10 Apr 2019
Modificato: Thomas Rosin
il 10 Apr 2019
example for f(x)=x;
f=@(x) x;
0 Commenti
Walter Roberson
il 19 Lug 2020
Modificato: Walter Roberson
il 19 Lug 2020
- MATLAB has no implied multiplication. All multiplication must be explicit with either the .* (corresponding elements, which is usually the desired operation) or * (inner product) operators
- e to a power is coded as exp() the power
- division is the ./ operator with the / operator being more like multiplying by the pseudo-inverse
- powers other than e to something, should be the .^ (element at a time) or ^ (matrix power through generalized inner product) operators.
- square root is usually most clear and efficient using sqrt() but .^0.5 or nthroot() can be used, and sometimes sqrtm() or ^0.5 are appropriate
For the kinds of equations that are shown here, use .* and ./ and .^ instead of * and / and ^
0 Commenti
akram mehenni
il 2 Feb 2022
𝐸5 = 𝛼. 𝐸3 . √𝐸4
1 Commento
Walter Roberson
il 2 Feb 2022
The equations that were posted have no E3, E4, or E5, so this does not appear to be an answer to the question that was put. How are people to understand this as a solution to the question ?
Marwa Hameed
il 12 Ago 2022
Modificato: Walter Roberson
il 15 Ago 2022
How can I convert
this equation to MATLAB ?
1 Commento
Walter Roberson
il 15 Ago 2022
Caution: you have variable names Q_min and Q_max but you are integrating with respect to log(Q) so Q_min and Q_max are limits on log(Q) not limits on Q.
Integrating with respect to a function instead of a variable is always tricky.
Pi = sym(pi);
syms a_0 E G_fi(Q) Q_max Q_min R sigma_Born T log_Q
eqn = sigma_Born == 4*Pi*a_0^2/(T/R) * int(G_fi(exp(log_Q))/(E/R), log_Q, Q_min, Q_max)
Vishwajeet
il 29 Nov 2022
how can i convert Cu dTu/ dt = F − αTu − γ (Tu − Td) to matlab code?
1 Commento
Steven Lord
il 29 Nov 2022
See the documentation for the ODE solvers. I'd start with ode45 and the pages listed under Topics at the end of that page.
HA
il 22 Lug 2023
Please, your support is needed, thank you
4 Commenti
Walter Roberson
il 23 Lug 2023
would be
kummerU(1/2, 5/4, tau_0.^4 ./ (32 .* log(2).^2 .* sigma_k2.^2))
This might require the Symbolic Mathematics Toolbox
Om prakash Meena
il 13 Set 2023
1 Commento
Walter Roberson
il 13 Set 2023
I would offer the same comments as I did for https://www.mathworks.com/matlabcentral/answers/455413-how-to-convert-the-equation-to-matlab-code#answer_467841
BUI
il 5 Nov 2023
Help me convert this fuction please
1 Commento
Walter Roberson
il 5 Nov 2023
"A function can be recovered from its Fourier series, under suitable conditions. When this is possible, the Fourier series provides the inversion formula: "
and look at the formula there. Now let lambda = -1/P ...
Essodokinam
il 31 Gen 2024
Hi everybody, I need you help for converting these function in matlab:
0 Commenti
Vedere anche
Categorie
Scopri di più su Calculus in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!