CreateNativeInstance() private méthode

private CreateNativeInstance ( ) : INativeInstance
Résultat INativeInstance
 internal static INativeInstance CreateInstance(IDoubleMatrix?instance)
 {
     if (instance is null)
     {
         return(NativeInstance.Zero);
     }
     return(DoubleMatrix.CreateNativeInstance(instance));
 }
 internal static INativeInstance CreateInstance(DoubleMatrix instance)
 {
     if (instance == null)
     {
         return(NativeInstance.Zero);
     }
     return(instance.CreateNativeInstance());
 }
Exemple #3
0
 internal static INativeInstance CreateInstance(DoubleMatrix instance)
 {
   if (instance == null)
     return NativeInstance.Zero;
   return instance.CreateNativeInstance();
 }