Differences From Artifact [95d5640b1d]:
- Executable file mttroot/mtt/lib/examples/Mechanical/Mechanical-2D/InvertedPendulumOnCart/InvertedPendulumOnCart_subs.r — part of check-in [ef3ac62298] at 2001-04-02 10:57:57 on branch origin/master — Added missing ; (user: gawthrop@users.sourceforge.net, size: 511) [annotate] [blame] [check-ins using] [more...]
To Artifact [752962d684]:
- Executable file mtt/lib/examples/Mechanical/Mechanical-2D/InvertedPendulumOnCart/InvertedPendulumOnCart_subs.r — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 675) [annotate] [blame] [check-ins using] [more...]
- File mttroot/mtt/lib/examples/Identification/idInvertedPendulumOnCart/idInvertedPendulumOnCart_subs.r — part of check-in [6e8c859b73] at 2001-04-11 15:41:45 on branch origin/master — New identification example - friction components only (user: gawthrop@users.sourceforge.net, size: 675) [annotate] [blame] [check-ins using]
- File mttroot/mtt/lib/examples/Identification/idInvertedPendulumOnCart/sidInvertedPendulumOnCart_subs.r — part of check-in [6e8c859b73] at 2001-04-11 15:41:45 on branch origin/master — New identification example - friction components only (user: gawthrop@users.sourceforge.net, size: 675) [annotate] [blame] [check-ins using]
- Executable file
mttroot/mtt/lib/examples/Mechanical/Mechanical-2D/InvertedPendulumOnCart/InvertedPendulumOnCart_subs.r
— part of check-in
[47742bde53]
at
2001-04-11 09:44:26
on branch origin/master
— Fixed cc and c problems to do with pow(x,y) and integers
mtt/lib/reduce/fix_c.r is included in rdae2dae and cse2smx_lang for
-c, -cc and -oct options (user: gawthrop@users.sourceforge.net, size: 675) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | % Default SUBS file % File InvertedPendulumOnCart_subs.r % Generated by MTT on Thu Nov 9 18:55:44 GMT 2000. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %% Revision 1.1 2000/12/28 18:00:45 peterg % %% To RCS % %% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Put algebraic substitution commands here for all x let cos(x)^2+sin(x)^2 = 1; END; | > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | % Default SUBS file % File InvertedPendulumOnCart_subs.r % Generated by MTT on Thu Nov 9 18:55:44 GMT 2000. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %% Revision 1.2 2001/04/02 10:57:57 gawthrop % %% Added missing ; % %% % %% Revision 1.1 2000/12/28 18:00:45 peterg % %% To RCS % %% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Put algebraic substitution commands here for all x let cos(x)^2+sin(x)^2 = 1; FOR ALL x,y LET x^y = pow(x,y); % Use the pow function ON ROUNDED; % No integer output END; |