How to divide and times in matlab
Mostrar comentarios más antiguos
Hey everyone!
Basically im trying to write my fist line of code, in matlab, to the given formula: |G(jw) |= 1/√(R^2+(wL- 1/wC)^2 ) Now, im not sure how to get the 1/wC term as I do not know how to divide in matlab. also, how do I get the ^2? All I want is the general form as an answer. I should be able to get it from there! Thanks!
Respuesta aceptada
Más respuestas (4)
Paulo Silva
el 11 de Dic. de 2011
1/sqrt(R^2+(w*L-1/(w*C))^2)
if perhaps you are working with arrays or vectors and you want the operations to be performed element wise you must put a period before the symbols like this:
.^
.*
./
u-will-neva-no
el 12 de Dic. de 2011
0 votos
Samra Sarwar
el 4 de Dic. de 2019
0 votos
L = 2500
wi = 15
τ = L/wi
Please code this in MATLAB
Zahin Akif
el 19 de Feb. de 2020
0 votos
L = 2500
wi = 15
τ = L/wi
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!