tstrings, not cells - cosmo - front and backend for Markov-Chain Monte Carlo in… | |
git clone git://src.adamsgaard.dk/cosmo | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit ccf4fe0224650a41a537909468ead25bcad5ea52 | |
parent f1ac100053f4b44fcb3ce59a06ec6d750cf86e53 | |
Author: Anders Damsgaard <[email protected]> | |
Date: Mon, 7 Dec 2015 20:53:05 +0100 | |
strings, not cells | |
Diffstat: | |
M matlab/generate_plots.m | 8 ++++---- | |
1 file changed, 4 insertions(+), 4 deletions(-) | |
--- | |
diff --git a/matlab/generate_plots.m b/matlab/generate_plots.m | |
t@@ -1131,25 +1131,25 @@ id = idstring(end); | |
html = '\n'; | |
for i=1:Nwalkers | |
html = [html, ... | |
- ' <br><a href="output/', id, '-eps_int-w', ... | |
+ ' <br><a href="output/', id{1}, '-eps_int-w', ... | |
num2str(i), '.txt"\n', ... | |
' target="_blank">Walker ', num2str(i), ... | |
' ε<sub>int</sub> ',... | |
'data</a>\n']; | |
html = [html, ... | |
- ' <a href="output/', id, '-eps_gla-w', ... | |
+ ' <a href="output/', id{1}, '-eps_gla-w', ... | |
num2str(i), '.txt"\n', ... | |
' target="_blank">Walker ', num2str(i), ... | |
' ε<sub>gla</sub> ',... | |
'data</a>\n']; | |
html = [html, ... | |
- ' <a href="output/', id, '-t_degla-w', ... | |
+ ' <a href="output/', id{1}, '-t_degla-w', ... | |
num2str(i), '.txt"\n', ... | |
' target="_blank">Walker ', num2str(i), ... | |
' <i>t</i><sub>degla</sub> ',... | |
'data</a>\n']; | |
html = [html, ... | |
- ' <a href="output/', id, '-eps_int-w', ... | |
+ ' <a href="output/', id{1}, '-eps_int-w', ... | |
num2str(i), '.txt"\n', ... | |
' target="_blank">Walker ', num2str(i), ... | |
' δ<sup>18</sup>O', ... |