Overview
| Comment: | Tweaked figures again |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
be0199de5d204d07914086594b354818 |
| User & Date: | gawthrop@users.sourceforge.net on 2002-05-26 17:28:27.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2002-05-27
| ||
| 10:36:21 |
Fix for bug [553524] #define PI causes parse error. Only substitutes for PI if it is not a number. This prevents Reduce from trying to substitute for 3.14... when "on rounded" has been set. check-in: 5955810cef user: geraint@users.sourceforge.net tags: origin/master, trunk | |
|
2002-05-26
| ||
| 17:28:27 | Tweaked figures again check-in: be0199de5d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
2002-05-25
| ||
| 09:23:47 | Self-naming components: name is mttTYPE or mttTYPE_2 ... check-in: bb99b2427e user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/rep/nppp_rep.sh
from [ee2ae1807e]
to [08291d0b19].
| ︙ | ︙ | |||
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 |
y_open = y(j,:);
u_open = u(j,:);
## Plots
gset nokey
gset nogrid
gset format x "%.1f"
gset format y "%.2f"
gset term fig monochrome portrait fontsize 20 size 20 20 metric \
thickness 4
gset output "${sys}_nppp.fig"
title("");
xlabel("Time (s)");
ylabel("u");
| > > | > | | | 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
y_open = y(j,:);
u_open = u(j,:);
## Plots
gset nokey
gset nogrid
#eval(sprintf("gset xtics %g", simpar.last));
#gset noytics
gset format x "%.1f"
gset format y "%.2f"
gset term fig monochrome portrait fontsize 20 size 20 20 metric \
thickness 4
gset output "${sys}_nppp.fig"
title("");
xlabel("Time (s)");
ylabel("u");
subplot(2,1,2); plot(t,u,'-', T_open, u_open,"+");
#subplot(2,1,2); plot(t,u);
ylabel("y");
subplot(2,1,1); plot(t,y,'-', T_open, y_open,"+");
#subplot(2,1,1); plot(t,y);
oneplot;
gset term fig monochrome portrait fontsize 20 size 20 10 metric \
thickness 4
gset output "${sys}_nppp.basis.fig"
title("");
xlabel("Time (s)");
ylabel("Basis functions");
|
| ︙ | ︙ |