Re: [ojAlgo-user] Elmentwise multiplication
Mathematics, linear algebra and optimisation
Brought to you by:
apete
From: Anders P. <an...@op...> - 2017-01-15 20:35:18
|
PrimitiveDenseStore store1 = …. PrimitiveDenseStore store2 = …. PrimitiveDenseStore store3 = store1.copy(); store3.modifyMatching(PrimitiveFunction.MULTIPLY, store2); or if it’s ok to modify one of the original matrices (store1 for example): store1.modifyMatching(PrimitiveFunction.MULTIPLY, store2); /Anders > On 15 Jan 2017, at 20:32, Sree <tec...@gm...> wrote: > > Hi, > > I'm trying ojAlgo for an ML module. I was looking for a function to do element-wise multiplication of two matrices or primitiveDenseStores, but could not find yet from the documentation. > > Can anyone please tell me how to do this or give pointers to documentation about this ? > > Regards > Sree > > ------------------------------------------------------------------------------ > Developer Access Program for Intel Xeon Phi Processors > Access to Intel Xeon Phi processor-based developer platforms. > With one year of Intel Parallel Studio XE. > Training and support from Colfax. > Order your platform today. http://sdm.link/xeonphi_______________________________________________ > ojAlgo-user mailing list > ojA...@li... > https://lists.sourceforge.net/lists/listinfo/ojalgo-user |