Borrar filtros
Borrar filtros

how to write this equation

2 visualizaciones (últimos 30 días)
sri satya ravi
sri satya ravi el 12 de Jun. de 2016
Comentada: John BG el 14 de Jun. de 2016
Can someone help me write this equation. I am having problems with a bracket somewhere.Not getting the answer i needed.
Thanks
  6 comentarios
sri satya ravi
sri satya ravi el 13 de Jun. de 2016
Hi Stephen Cobeldick,
I could figure out the equation. I got the result I was expecting.
Cf = sqrt((2*gama.*(r_cfv.^((gama-1)/gama)-1))./((gama-1).*(beta^4.-r_cfv.^(-2/gama))));
Thanks for the help.
John BG
John BG el 14 de Jun. de 2016
good, you got to the result you wanted.
The adding of .^ ./ is what I meant
Now you can throw in vectors, as long as same length, and obtain numeric results, better than working with symbolic variables.
Regards
John

Iniciar sesión para comentar.

Respuesta aceptada

Stephen23
Stephen23 el 12 de Jun. de 2016
Editada: Stephen23 el 12 de Jun. de 2016
I used y and B to make it easier to read:
num = 2*y*(r^((y-1)/y)-1)
den = (y-1)*(B^4 - r^(-2/y))
out = sqrt(num/den)
  2 comentarios
John BG
John BG el 12 de Jun. de 2016
I bet Satya wants it for vectors
Stephen23
Stephen23 el 13 de Jun. de 2016
Editada: Stephen23 el 13 de Jun. de 2016
Probably, but they didn't tell us which values are vectors. Probably this is a good place to start reading:

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Mathematics 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