Tagged Questions
3
votes
4answers
861 views
Algorithmically get Amplitude and Phase of Sine wave?
I'm trying to figure out a way to algorithmically get the amplitude and phase of a function that has sinusoidal terms in the Maxima computer algebra system. This only applies to steady state (as t -> ...
1
vote
1answer
31 views
Maxima: convert matrix to list
I convert list to matrix in Maxima in following way:
DataL : [ [1,2], [2,4], [3,6], [4,8] ];
DataM: apply('matrix,DataL);
How to do it the other way ? How to convert given matrix DataM into list ...