Overview
Comment: | Trig simplification added |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
c095ced63622ee945d308f18a573d905 |
User & Date: | gawthrop@users.sourceforge.net on 1998-03-22 20:13:25 |
Other Links: | branch diff | manifest | tags |
Context
1998-03-22
| ||
20:21:11 | $topic now converted to lower case. check-in: 2e2e1da0e3 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
20:13:25 | Trig simplification added check-in: c095ced636 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
20:12:51 | Initial revision check-in: ab744da7a6 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/examples/Mechanical/Mechanical-2D/TwoLink/TwoLink_subs.r from [e45cd58f37] to [cceaeb9eae].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | + + + + | %% Reduce substitution statements for system TwoLink (TwoLink_subs.r) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %% Revision 1.1 1998/03/22 20:12:51 peterg % %% Initial revision % %% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% trig1 := {cos(~x)*cos(~y) => (cos(x+y)+cos(x-y))/2, cos(~x)*sin(~y) => (sin(x+y)-sin(x-y))/2, sin(~x)*sin(~y) => (cos(x-y)-cos(x+y))/2, cos(~x)^2 => (1+cos(2*x))/2, sin(~x)^2 => (1-cos(2*x))/2}; LET trig1; END; |