Maxima - Examples for using the Maxima Plugin - Messages
#41 Posted: 1/4/2014 9:52:21 AM
Nothing spectacular, just followed Martin's example from the least squared fit and produced this simple plot after using the problematic function from stats package. It was a bit trial-and-error, and it might be not so elegant-but it works.
Regards,
Radaovan

Regards,
Radaovan
When Sisyphus climbed to the top of a hill, they said: "Wrong boulder!"
#42 Posted: 1/4/2014 2:58:55 PM
I added a plot with the draw package and tried to streamline the regression.
The result of the statistics functions is a so called inference_result object, being essentially a list structure with a set of access functions.
items_inference(obj) lists the available attributes, take_inference(attr,obj) returns the value of the specified attribute.
An advantage of the draw package is that you can plot 2 column matrices just like in SMath. Thus the example works without a single list<>matrix conversion.
Example Maxima stats draw.sm (14 KiB) downloaded 135 time(s).
The result of the statistics functions is a so called inference_result object, being essentially a list structure with a set of access functions.
items_inference(obj) lists the available attributes, take_inference(attr,obj) returns the value of the specified attribute.
An advantage of the draw package is that you can plot 2 column matrices just like in SMath. Thus the example works without a single list<>matrix conversion.
Example Maxima stats draw.sm (14 KiB) downloaded 135 time(s).
Martin Kraska
Pre-configured portable distribution of SMath Studio: https://en.smath.info/wiki/SMath%20with%20Plugins.ashx
1 users liked this post
Radovan Omorjan 1/4/2014 6:24:00 PM
#43 Posted: 1/4/2014 6:40:16 PM
Thank you Martin very much,
It does really work and it is quite nice
. I think I understand a bit more how the things are working
The "inference_results" thing is a good one as well. I do not now how much time it would take to figure out myself. Thank you.
Regards,
Radovan
It does really work and it is quite nice


The "inference_results" thing is a good one as well. I do not now how much time it would take to figure out myself. Thank you.
Regards,
Radovan
When Sisyphus climbed to the top of a hill, they said: "Wrong boulder!"
#44 Posted: 1/19/2014 8:24:19 PM
Here is how the gaps in StatisticalTools by Davide could be filled. The quantile functions, however, are rather slow. I don't know if that is due to slow translation or to the slow algorithm. Also, the chi2-quantile seems to not be robust (sometimes fails to be plotted).
The function definitions in the attached sheet are not entirely consistent to Davide's plugin, as they do not produce a 2 column matrix when they receive vector input.
Davide, if you do not want to use the Maxima algorithms in your plugin (which might be more efficient), then we could provide the functions as part of the Maxima-plugin.

The function definitions in the attached sheet are not entirely consistent to Davide's plugin, as they do not produce a 2 column matrix when they receive vector input.
Davide, if you do not want to use the Maxima algorithms in your plugin (which might be more efficient), then we could provide the functions as part of the Maxima-plugin.
Martin Kraska
Pre-configured portable distribution of SMath Studio: https://en.smath.info/wiki/SMath%20with%20Plugins.ashx
1 users liked this post
Radovan Omorjan 1/20/2014 2:22:00 AM
#45 Posted: 1/20/2014 2:26:53 AM
WroteDavide, if you do not want to use the Maxima algorithms in your plugin (which might be more efficient), then we could provide the functions as part of the Maxima-plugin.
Thank you Martin for pointing this out once more. As I know, Davide asked for some appropriate algorithms to fill the gap in the StatisticalTools. These quantile functions which missed there are one of the most frequently used. It would be rather useful if they are inside Statistical tools, although we have them via Maxima as Martin presented.
Regards,
Radovan
When Sisyphus climbed to the top of a hill, they said: "Wrong boulder!"
#46 Posted: 3/29/2014 8:33:40 PM
Would like to use the plot/draw functions from maxima in the executable file generated by the Smath viewer.
#47 Posted: 3/30/2014 5:07:01 AM
WroteWould like to use the plot/draw functions from maxima in the executable file generated by the Smath viewer.
You might file your feature request in the bug tracking system. Please attach an .sm sheet for testing.
However, providing Maxima as part of compiled software might violate their license terms.
Martin Kraska
Pre-configured portable distribution of SMath Studio: https://en.smath.info/wiki/SMath%20with%20Plugins.ashx
#48 Posted: 4/17/2014 6:20:12 PM
Here is a small program for generation of Ashby-like material property charts. The data has been taken from the online ressources for Buchmayr 2002. Besides the Maxima plugin and it's drawing functions this program also demonstrates the use of varous plugins by Davide (Table, Slider, DataExchange, Checkbutton List)
It would be easy to generate the bubbles in the modeller region. But that has to wait until Andrey finds some time to document how to place text annotations.
Then one might be able to click the bubbles in order to create and place label strings.
EDIT: Due to a checkboxlist bug I had to remove the material chooser. For now you have to switch on and off the materials by setting the corresponding entry in gr.sel to 1 or 0.
Werkstoffdiagramme.zip (48 KiB) downloaded 138 time(s).
It would be easy to generate the bubbles in the modeller region. But that has to wait until Andrey finds some time to document how to place text annotations.
Then one might be able to click the bubbles in order to create and place label strings.
EDIT: Due to a checkboxlist bug I had to remove the material chooser. For now you have to switch on and off the materials by setting the corresponding entry in gr.sel to 1 or 0.
Werkstoffdiagramme.zip (48 KiB) downloaded 138 time(s).
Martin Kraska
Pre-configured portable distribution of SMath Studio: https://en.smath.info/wiki/SMath%20with%20Plugins.ashx
2 users liked this post
#49 Posted: 4/18/2014 6:17:36 AM
Thanks Martin, nice work 
CheckBoxList is under development (alpha/not public - in this state it's "naturally" buggy) :d
Best regards,
Davide
edit: for the testers, there's a plugin in the EM to open and save again worksheets containing ComboBoxList regions.

CheckBoxList is under development (alpha/not public - in this state it's "naturally" buggy) :d
Best regards,
Davide
edit: for the testers, there's a plugin in the EM to open and save again worksheets containing ComboBoxList regions.
If you like my plugins please consider to support the program buying a license; for personal contributions to me: paypal.me/dcprojects
#50 Posted: 4/18/2014 6:50:34 PM
#51 Posted: 5/28/2014 12:27:03 PM
Here is a modified version of Radovan's distrib-example. Changes were required, because of
- The plugin does not convert Maxima lists to SMath vectors any more,
- distrib functions seem to require float arguments.

- The plugin does not convert Maxima lists to SMath vectors any more,
- distrib functions seem to require float arguments.
Martin Kraska
Pre-configured portable distribution of SMath Studio: https://en.smath.info/wiki/SMath%20with%20Plugins.ashx
1 users liked this post
Radovan Omorjan 5/28/2014 12:32:00 PM
#52 Posted: 5/29/2014 5:21:39 AM
Thank you Martin for correcting the example. Here is another one using F distribution from Maxima distrib package. Statistical plugin by Davide is used as well. There is a nice feature in this plugin of returning two columns when using probability distribution functions (missing quantile functions unfortunately). One more interesting thing is to note about distrib package functions. They will not use vectors as arguments returning vector results - therefore we have to use loops (see the second picture). This is contrary to other Maxima examples where we can avoid loops in Smath
Regards,
Radovan

Regards,
Radovan
When Sisyphus climbed to the top of a hill, they said: "Wrong boulder!"
1 users liked this post
Davide Carpi 5/29/2014 5:25:00 AM
#53 Posted: 5/29/2014 6:09:22 PM
WroteOne more interesting thing is to note about distrib package functions. They will not use vectors as arguments returning vector results - therefore we have to use loops (see the second picture). This is contrary to other Maxima examples where we can avoid loops in Smath
Much like the SMath plugins, many Maxima features are provided by third party packages (wrt the core development team) and there are as many opinions on what a good function interface is as there are contributors.
It is surely possible to re-define the Maxima functions such that they accept matrix arguments and return two-col matrices in that case. If you have a corresponding idea, then you can add the definition to your maxima.xml and try if it works. We can then include this into the plugin distribution.
I added a Maxima based plot to the sheet.
distrib-Maxima_Kr_F.sm (101 KiB) downloaded 132 time(s).
Martin Kraska
Pre-configured portable distribution of SMath Studio: https://en.smath.info/wiki/SMath%20with%20Plugins.ashx
#54 Posted: 5/30/2014 3:37:49 AM
Thank you Martin for this one
. You read my mind, as I was browsing your Maxima drawing examples reminding the Draw2D options and trying to do a similar thing. Now, you've made me a template. Thank you.
About the changing maxima.xml, unfortunately it is beyond my capabilities at the moment. I am far from being an advanced user of these things - just a curious one.
Regards,
Radovan

About the changing maxima.xml, unfortunately it is beyond my capabilities at the moment. I am far from being an advanced user of these things - just a curious one.
Regards,
Radovan
When Sisyphus climbed to the top of a hill, they said: "Wrong boulder!"
#55 Posted: 5/30/2014 7:29:33 AM
#56 Posted: 6/5/2014 1:29:30 PM
Here is an example (LRC oscillator) for solving differential equations from the Maxima mailing list. The combination of SMath Studio and Maxima has much better and more convenient support for units than native Maxima.
The first version solves the generic system of differential and linear algebraic equations directly. A second version is to follow in the next post.
Example Maxima desolve.sm (12 KiB) downloaded 117 time(s).
The first version solves the generic system of differential and linear algebraic equations directly. A second version is to follow in the next post.
Example Maxima desolve.sm (12 KiB) downloaded 117 time(s).
Martin Kraska
Pre-configured portable distribution of SMath Studio: https://en.smath.info/wiki/SMath%20with%20Plugins.ashx
1 users liked this post
Radovan Omorjan 6/6/2014 1:17:00 AM
#57 Posted: 6/5/2014 1:36:27 PM
And here is a version of the previous example where we reduce the system to a second order ODE using Maxima's ev() function. Due to spurious imaginary parts in the numeric evaluation of the result, we have to use Maxima again for extraction of the real part.

Martin Kraska
Pre-configured portable distribution of SMath Studio: https://en.smath.info/wiki/SMath%20with%20Plugins.ashx
1 users liked this post
Radovan Omorjan 6/6/2014 1:17:00 AM
#58 Posted: 6/6/2014 1:21:13 AM
#59 Posted: 6/6/2014 6:57:37 AM
Just testing desolve() based on the example from Maxima by Example. I am not sure that desolve() can solve other than initial conditions for t=0.
Regards,
Radovan

Regards,
Radovan
When Sisyphus climbed to the top of a hill, they said: "Wrong boulder!"
1 users liked this post
Martin Kraska 6/6/2014 9:39:00 AM
#60 Posted: 6/6/2014 9:52:59 AM
WroteI am not sure that desolve() can solve other than initial conditions for t=0.
Maxima doc says that initial conditions can only be specified for x=0. One might wonder why then t has to be specified in atvalue(), but that function has more uses than just specification of initial conditions.
BTW, you also can use ODE.2, a wrapper for ode2, with preprocessing of the equation switched off.
Also, you can specify the initial conditions in Solve using Davide's at().
Martin Kraska
Pre-configured portable distribution of SMath Studio: https://en.smath.info/wiki/SMath%20with%20Plugins.ashx
-
New Posts
-
No New Posts