MBS Symbolic Toolbox Alternative
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Tiago Carvalho
le 13 Juin 2022
Commenté : Steven Lord
le 13 Juin 2022
Good Afternoon,
I am currently developing my Master Thesis project, which consists of developing a general-porpused multi-body simulation program. Currently, I have a good basis for the program that is able to solve the simulations that I ask of it.
However, I have been using the symbolic Toolbox to allow the user to define input functions that define the position,velocity and acceleration of the driving links. The functions are usual polynomial or sinusoidal and are defined in an excel, that serves as a GUI, as the following: '@(t) 6,28*t^2 (for example), and this is costing me a lot of computation effort, when I introduce a driving input the simulations are taking hours and using the profile I have identified that the definition of the variable sym t for my input functions is the one that consumes me the most computation time.
Does anyone has an alternative for the symbolic toolbox that is more effienct? I have already maxed out the efficiency in terms of numerical methods algorithms and there isn't much more I can do on that department.
Thank you for your attention.
Tiago Carvalho
0 commentaires
Réponse acceptée
Steven Lord
le 13 Juin 2022
What operations do you need to do on these functions? If all you need to do is define and evaluate them, just define them as anonymous functions.
s = '@(x) x.^2+2*x-1';
f = str2func(s);
x = 1:10;
y1 = f(1:10)
y2 = x.^2+2*x-1 % Check that the output of f matches the explicit computations
2 commentaires
Steven Lord
le 13 Juin 2022
If the functions are "nice" approximating the derivative using numerical differentiation techniques may be sufficient for your needs.
Plus de réponses (0)
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!