This may prove to be simple, but i have not been able to figure it out (nor am i sure if it can even be done in Mathematica).
I use vectors in electrical engineering as a polar, length and angle (in degrees). But Mathematica insist on displaying vectors in polar as a length and angle (in radians or something) and i need the degrees for my results.
URg = AngleVector[{UnitConvert[I*Rg, "Volts"],
Quantity[30, "AngularDegrees"]}]
{Quantity[2.07846, "Volts"], Quantity[1.2, "Volts"]}
I have tried something like this, but as far as i can see and understand, the program recognizes the degrees in the formula, but won't display it as degrees in the result.
I looked up function like ToPolarCoordinates, but it still doesn't work properly.
Hooping someone has some guidance or at least some good suggestions.
In advance thank you.
AngleVector[{r,theta}]gives the Cartesian coordinates of the polar coordinate{r,theta}, so to get the angle "back", one would have to do something likeN[ArcTan @@ (QuantityMagnitude@URg)/Degree]. Please correct me if I've misunderstood, though! – Anne Nov 15 '17 at 21:46{Quantity[2.07846, "Volts"] \[Angle] Quantity[30, "AngularDegrees"]}Basiclly i need the polar coordinates displayed as{r,Degree}– Jamie Nov 16 '17 at 07:20Because that is looking like something in the right direction, but as far as i can see, it is still, even with that, displaying the angle as
5 ∠ ArcTan[4/3] and i need that part as degrees in the result?
– Jamie Nov 16 '17 at 07:3360 Degree. That represents it in radians automatically. OrQuantityMagnitude@ UnitConvert[Quantity[60, "AngularDegrees"], "Radians"]. – b3m2a1 Nov 19 '17 at 21:54Degreeto go back to degrees. Or reverse thatUnitConvertcall:UnitConvert[Quantity[num, "Radians"], "AngularDegrees"]– b3m2a1 Nov 21 '17 at 08:20