Filter löschen
Filter löschen

Function to evaluate arguments using pol2cart

3 Ansichten (letzte 30 Tage)
Carlos
Carlos am 29 Mär. 2014
Kommentiert: Marta Salas am 30 Mär. 2014
Write a function with input arguments to be the magnitude and angle (in degrees) of a complex number and output argument to be the Cartesian form of the same number, i.e. x+yi.

Antworten (2)

Roger Stafford
Roger Stafford am 29 Mär. 2014
Think about how the real and imaginary parts of any complex number are related to its magnitude and angle, and you will have just about solved your problem. The necessary matlab code is easy to write.
  1 Kommentar
Carlos
Carlos am 29 Mär. 2014
Thank you for your prompt response. I do understand the relation of the two components. The problem is that I'm trying to use a function and pol2cart and I don't know how to get about.
Thank you
Code:
function x = Carlos_Virguez_Ex14(5,63)
[X,Y] = pol2cart(63*pi/180, 5);
x = X+Y*1i;

Melden Sie sich an, um zu kommentieren.


Marta Salas
Marta Salas am 30 Mär. 2014
Bearbeitet: Marta Salas am 30 Mär. 2014
As arguments for your function you have to write the name of the variable:
function x = Carlos_Virguez_Ex14(r,angle)
Note: you have to modify the code inside your function to use these variables.
then when you call that function [in the MATLAB's prompt] you assign the values for those variables:
>>Carlos_Virguez_Ex14(5,63)
  2 Kommentare
Carlos
Carlos am 30 Mär. 2014
Thank you Marta,
I was finally able to run the script, but now I'm getting another error.
Maximum recursion limit of 500 reached. Use set(0,'RecursionLimit',N) to change the limit. Be aware that exceeding your available stack space can crash MATLAB and/or your computer.
Thanks in advanced
Marta Salas
Marta Salas am 30 Mär. 2014
Did you get that error running this script?!

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Trigonometry finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by