Exemplo n.º 1
0
 public static ref BlockVector <double> pow(BlockVector <double> lhs, BlockVector <double> rhs, ref BlockVector <double> dst)
 {
     VmlImport.vdPow(length(lhs, rhs), ref head(lhs), ref head(rhs), ref head(dst));
     return(ref dst);
 }
Exemplo n.º 2
0
Arquivo: vml.cs Projeto: 0xCM/z0
 public static ref RowVector256 <double> pow(RowVector256 <double> lhs, RowVector256 <double> rhs, ref RowVector256 <double> dst)
 {
     VmlImport.vdPow(length(lhs, rhs), ref head(lhs), ref head(rhs), ref head(dst));
     return(ref dst);
 }