예제 #1
0
 public static ref BlockVector <float> copySign(BlockVector <float> a, BlockVector <float> b, ref BlockVector <float> dst)
 {
     VmlImport.vsCopySign(dst.Length, ref head(a), ref head(b), ref head(dst));
     return(ref dst);
 }
예제 #2
0
파일: vml.cs 프로젝트: 0xCM/z0
 public static ref RowVector256 <float> copySign(RowVector256 <float> a, RowVector256 <float> b, ref RowVector256 <float> dst)
 {
     VmlImport.vsCopySign(dst.Length, ref head(a), ref head(b), ref head(dst));
     return(ref dst);
 }