User Portlet
| Discussions |
|---|
| Try this data = Table[Flatten[{t, Evaluate[{x[t]} /. s]}], {t, 0, 2000, 0.5}]; That, with telling Export to use csv, seems to be enough to get you where you need to be. |
| Thank you! Your solution works just fine!! |
| If you don't care for the general solution, but only need one, you can use FindInstance instead of Solve: x = {1, 1, 0, 0}; y = {1, -1, 0, 0}; M0 = Array[m0, {4, 4}]; MatrixForm[M0] /. First@FindInstance[x.M0 == y, Flatten@M0,... |
| Thank you very much! it works just fine :) |
| Hello David, thank you for your nice solution! My target is as follows: I want to simulate the behavior of an optical switch, therefor it is important to get the function of my waveform generator. The "weird" zero lines in-between will give me... |
| Thank you! That worked out just fine!!! |