Sha256: 12f2901de315fbba594a94453d032b624ae47d30d1a3bbc5012f02a57dd0be8b
Contents?: true
Size: 1.5 KB
Versions: 3
Compression:
Stored size: 1.5 KB
Contents
/* Array element(s) set. @overload []=(dim0,..,dimL,val) @param [Numeric,Range,etc] dim0,..,dimL Multi-dimensional Index. @param [Numeric,Numo::NArray,etc] val Value(s) to be set to self. @return [Numeric] returns val (last argument). --- Replace element(s) at +dim0+, +dim1+, ... (index/range/array/true for each dimention). Broadcasting mechanism is applied. a = Numo::DFloat.new(3,4).seq => Numo::DFloat#shape=[3,4] [[0, 1, 2, 3], [4, 5, 6, 7], [8, 9, 10, 11]] a[1,2]=99 a => Numo::DFloat#shape=[3,4] [[0, 1, 2, 3], [4, 5, 99, 7], [8, 9, 10, 11]] a[1,[0,2]] = [101,102] a => Numo::DFloat#shape=[3,4] [[0, 1, 2, 3], [101, 5, 102, 7], [8, 9, 10, 11]] a[1,true]=99 a => Numo::DFloat#shape=[3,4] [[0, 1, 2, 3], [99, 99, 99, 99], [8, 9, 10, 11]] */ static VALUE <%=c_func%>(int argc, VALUE *argv, VALUE self) { ssize_t pos; char *ptr; VALUE a; dtype x; argc--; if (argc==0) { <%=c_func.sub(/_aset/,"_store")%>(self, argv[argc]); } else { pos = na_get_scalar_position(self, argc, argv, sizeof(dtype)); if (pos == -1) { a = na_aref_main(argc, argv, self, 0); <%=c_func.sub(/_aset/,"_store")%>(a, argv[argc]); } else { ptr = na_get_pointer_for_read_write(self); x = m_num_to_data(argv[argc]); STORE_BIT(ptr,pos,x); } } return argv[argc]; }
Version data entries
3 entries across 3 versions & 1 rubygems