Overview
| Comment: | Unified format of responses. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
c040d849f908b3d6dfce1c4b4c4228c6 |
| User & Date: | gawthrop@users.sourceforge.net on 1996-08-18 12:00:19.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1996-08-18
| ||
| 12:02:46 | Fixed bug when some matrices are empty. check-in: 7dbc0b1aab user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 12:00:19 | Unified format of responses. check-in: c040d849f9 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
1996-08-16
| ||
| 14:52:24 | Added two alternative view options - dview and pview. check-in: 7f1a85363f user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/dae2daes_m
from [d77b006742]
to [380cdff7a8].
| ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 | 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 | + + + + - - + + + + + - + | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.2 1996/08/16 13:17:57 peter ## Changed default args to include nx+nz ## Fixed bug with vector outputs. ## ## Revision 1.1 1996/08/15 16:24:55 peter ## Initial revision ## ############################################################### |
| ︙ | |||
55 56 57 58 59 60 61 | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | + + - + + + + + + - - - - - + + + + + + + - |
end;
[n,m]=size(T);
if m>n
T=T';
end;
if nx>0
|