VectorDataExtensions.ReadMatlab Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET.Data (in Numerics.NET.Data.dll) Version: 10.6.0

Overload List

ReadMatlab(Stream)

C#
public static Vector<double> ReadMatlab(
	Stream stream
)

Parameters

stream  Stream
 

Return Value

Vector<Double>

ReadMatlab<T>(Stream)

C#
public static Vector<T> ReadMatlab<T>(
	Stream stream
)

Parameters

stream  Stream
 

Type Parameters

T

Return Value

Vector<T>

ReadMatlab(String)

C#
public static Vector<double> ReadMatlab(
	string path
)

Parameters

path  String
 

Return Value

Vector<Double>

ReadMatlab<T>(String)

C#
public static Vector<T> ReadMatlab<T>(
	string path
)

Parameters

path  String
 

Type Parameters

T

Return Value

Vector<T>

ReadMatlab(Stream, String)

C#
public static Vector<double> ReadMatlab(
	Stream stream,
	string name
)

Parameters

stream  Stream
 
name  String
 

Return Value

Vector<Double>

ReadMatlab<T>(Stream, String)

C#
public static Vector<T> ReadMatlab<T>(
	Stream stream,
	string name
)

Parameters

stream  Stream
 
name  String
 

Type Parameters

T

Return Value

Vector<T>

ReadMatlab(String, String)

C#
public static Vector<double> ReadMatlab(
	string path,
	string name
)

Parameters

path  String
 
name  String
 

Return Value

Vector<Double>

ReadMatlab<T>(String, String)

C#
public static Vector<T> ReadMatlab<T>(
	string path,
	string name
)

Parameters

path  String
 
name  String
 

Type Parameters

T

Return Value

Vector<T>

See Also