Tiny bug in StackProfilePlot

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Tiny bug in StackProfilePlot

Dotan Kamber
Hi there
StackProfilePlot.txt generates profile plots of all but the last image in a stack.
To fix -
    for (i=1; i<n; i++) {

should be
    for (i=1; i<=n; i++) {
Regards
Dotan