File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed
Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -233,7 +233,22 @@ weighted_averages(results)
233233
234234If you want a "quick and dirty" way to exclude
235235some data points from your imported data, you may
236- use the 'trim' function.
236+ use indexing on the ` input1D ` and ` input2D `
237+ structures, just like you would on any array.
238+
239+ e.g.: ` invert(data[x:end]) ` , if your first ` x `
240+ number of points are noisy.
241+
242+ - ` data1D[3:end-2] ` excludes the 3 first and last
243+ 2 data points for both ` x ` and ` y ` elements within
244+ the structure.
245+
246+ - ` data2D[3:end-2, :] ` excludes the 3 first and
247+ last 2 data points in the direct dimension, and
248+ includes all points on the indirect dimension.
249+
250+
251+ The ` trim ` function also works:
237252
238253``` @docs
239254trim(::input1D, ::Int, ::Int)
You can’t perform that action at this time.
0 commit comments