how to declare

3 visualizaciones (últimos 30 días)
Pugazhendhi
Pugazhendhi el 10 de Feb. de 2012
Editada: Matthew Crema el 8 de Oct. de 2013
Hi All,
I would like to declare the following code in Matlab.
r = 4/pi atan((R-G)/(R+G))
Any one please help.
Thanks,
Pugazh

Respuesta aceptada

William
William el 10 de Feb. de 2012
Do you have the symbolic toolbox? If yes than
syms R G
r = 4/pi * atan((R-G)/(R+G));
else you're more than likely going to hve to define R and G in terms of domains. For example
R = 0:0.01:1;
G = 0:0.1:10; %Make sure the matrix dimensions agree.
r = 4/pi * atan((R-G)/(R+G));
Matrix manipulation is what matlab was designed to do at its basic level. the symbolic stuff is an add on that works pretty well.
  2 comentarios
Walter Roberson
Walter Roberson el 10 de Feb. de 2012
Probably you meant
r = 4/pi * atan((R-G) ./ (R+G));
Pugazhendhi
Pugazhendhi el 11 de Feb. de 2012
Thanks, its working.

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by