예제 #1
0
        public static float erfc(float src)
        {
            var dst = 0f;

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