Exemple #1
0
 public static ref BlockVector <double> max(BlockVector <double> a, BlockVector <double> b, ref BlockVector <double> dst)
 {
     VmlImport.vdFmax(dst.Length, ref head(a), ref head(b), ref head(dst));
     return(ref dst);
 }
Exemple #2
0
Fichier : vml.cs Projet : 0xCM/z0
 public static ref RowVector256 <double> max(RowVector256 <double> a, RowVector256 <double> b, ref RowVector256 <double> dst)
 {
     VmlImport.vdFmax(dst.Length, ref head(a), ref head(b), ref head(dst));
     return(ref dst);
 }