Overview
| Comment: | Minor updates .. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
8eaae9b2f2e500f3d19b3addc9aab99f |
| User & Date: | gawthrop@users.sourceforge.net on 2001-05-24 07:44:36.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2001-05-24
| ||
| 07:48:17 | Include artwork in the cbg.fig file check-in: 39adc84a7e user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 07:44:36 | Minor updates .. check-in: 8eaae9b2f2 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 07:42:12 | Included and updated the missing tf_r2m check-in: c13b3e7399 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/m/figfig.m
from [36dabb6f5b]
to [834208ffe6].
| 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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | - - + + - + + + + + + + + + + + + + + + - + + + |
|
| ︙ |
Modified mttroot/mtt/bin/trans/m/pol2root2tex.m
from [58e91efaa9]
to [f78af4d947].
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 | + + + | function tex = pol2root2tex(pol,name,f) ## pol2tex: converts polynomial into LaTeX form as (s-z_1)..(s-z_n) ## tex = pol2root2tex(pol,[name,f]) ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.2 2001/05/10 19:08:35 gawthrop ## Cosmetic improvements ## ## Revision 1.1 2001/05/10 11:44:40 gawthrop ## Useful conversion functions ## ## Revision 1.1 1999/05/24 22:05:53 peterg ## Initial revision ## ############################################################### |
| ︙ | |||
47 48 49 50 51 52 53 | 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | - + - + |
if imag(r(i))<0
i_plusminus = '+';
else
i_plusminus = '-';
endif
if complex
|