Sha256: dc31c71ad274aebf7c979a0bddbb87081c4d2a0a73da9c65573ab2e2599f4bf0
Contents?: true
Size: 1.19 KB
Versions: 3
Compression:
Stored size: 1.19 KB
Contents
static void iter_<%=c_func%>(na_loop_t *const lp) { size_t n; char *p1, *p2; ssize_t s1; double *opt = (double*)(lp->opt_ptr); INIT_COUNTER(lp, n); INIT_PTR(lp, 0, p1, s1); p2 = lp->args[1].ptr + lp->args[1].iter[0].pos; *(double*)p2 = <%=func_name%>((double*)p1,s1/sizeof(double),n,opt[0]); } /* <%=desc%> @overload <%=name%>(<%=method_args%>, axis:nil, keepdims:false) <% desc_param.each do |x|%> <%=x%><% end %> @param [Numeric,Array,Range] axis (keyword) Axes along which the operation is performed. @param [TrueClass] keepdims (keyword) If true, the reduced axes are left in th*/ static VALUE <%=c_func%>(int argc, VALUE *argv, VALUE mod) { VALUE reduce; double opt[1]; ndfunc_arg_in_t ain[2] = {{cDF,0},{sym_reduce,0}}; ndfunc_arg_out_t aout[1] = {{cDF,0}}; ndfunc_t ndf = { iter_<%=c_func%>, STRIDE_LOOP_NIP|NDF_FLAT_REDUCE|NDF_EXTRACT, 2, 1, ain, aout }; if (argc<2) { rb_raise(rb_eArgError,"wrong number of argument (%d for >=2)",argc); } opt[0] = NUM2DBL(argv[1]); reduce = nary_reduce_dimension(argc-2, argv+2, 1, argv, &ndf, 0); return na_ndloop3(&ndf, opt, 2, argv[0], reduce); }
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
numo-gsl-0.1.2 | ext/numo/gsl/stats/tmpl/stats_1a1p.c |
numo-gsl-0.1.1 | ext/numo/gsl/stats/tmpl/stats_1a1p.c |
numo-gsl-0.1.0 | ext/numo/gsl/stats/tmpl/stats_1a1p.c |