Search All of the Math Forum:
Views expressed in these public forums are not endorsed by
NCTM or The Math Forum.
|
|
|
Re: Errorbars in a dataset
Posted:
Jan 7, 2013 11:58 AM
|
|
> Does anyone know how to plot errorbars on a line graph from data stored in > a dataset? ... > errorbar(xAXIS,c7MEAN,errorbarLOWERzeros, c7SEM,':bo') ... > datasetfun(@plot,ds1,'DataVars','Fmean')
Dan, the datasetfun function is for applying functions to each of a set of variables. You want to apply a function to one set in a particular way. I think the easiest way would be to reference each variable directly:
errorbar(ds1.xAXIS, ds1.c7MEAN, ds1.errorbarLOWERzeros, ds1.c7SEM,':bo')
-- Tom
|
|
|
|