Method Generate
Generate()
Generates an observable sequence that contains a single 2x3 matrix with the specified rows.
public override IObservable<Matrix2x3> Generate()
Returns
- IObservable<Matrix2x3>
A sequence containing the created Matrix2x3 object.
Generate<TSource>(IObservable<TSource>)
Generates an observable sequence of 2x3 matrices with the specified rows, and where each Matrix2x3 object is emitted only when an observable sequence emits a notification.
public IObservable<Matrix2x3> Generate<TSource>(IObservable<TSource> source)
Parameters
source
IObservable<TSource>The sequence containing the notifications used for emitting new matrices.
Returns
- IObservable<Matrix2x3>
The sequence of created Matrix2x3 values.
Type Parameters
TSource
The type of the elements in the
source
sequence.