Returns a recurrence on the specified day of the current pattern.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Recurrence Day(
int day,
bool fromEnd = false
)
Public Function Day (
day As Integer,
Optional fromEnd As Boolean = false
) As Recurrence
public:
Recurrence^ Day(
int day,
bool fromEnd = false
)
member Day :
day : int *
?fromEnd : bool
(* Defaults:
let _fromEnd = defaultArg fromEnd false
*)
-> Recurrence
Parameters
- day
- Type: SystemInt32
A 1-based number. - fromEnd (Optional)
- Type: SystemBoolean
Indicates whether the number of days should be counted
from the end of the period.
Return Value
Type:
RecurrenceA new recurrence that is offset by
day days
from the start of the period.
day is a day number,
not an offset. The first day of the period
has
day equal to 1.
Reference