// (c) Microsoft Corporation 2005-2009. namespace Microsoft.FSharp.NativeInterop open Microsoft.FSharp.Math open System.Runtime.InteropServices [] module NativArrayExtensionsForMatrix = type Microsoft.FSharp.NativeInterop.PinnedArray<'T> with /// For native interop. Pin the given object [] static member inline of_vector : Vector<'T> -> PinnedArray<'T> /// For native interop. Pin the given object [] static member inline of_rowvec : RowVector<'T> -> PinnedArray<'T> type Microsoft.FSharp.NativeInterop.PinnedArray2<'T> with /// For native interop. Pin the given object [] static member inline of_matrix : Matrix<'T> -> PinnedArray2<'T>