f06db broadcasts an integer scalar into an integer vector.

Syntax

C#
public static void f06db(
	int n,
	int con,
	int[] x,
	int incx,
	out int ifail
)
Visual Basic
Public Shared Sub f06db ( _
	n As Integer, _
	con As Integer, _
	x As Integer(), _
	incx As Integer, _
	<OutAttribute> ByRef ifail As Integer _
)
Visual C++
public:
static void f06db(
	int n, 
	int con, 
	array<int>^ x, 
	int incx, 
	[OutAttribute] int% ifail
)
F#
static member f06db : 
        n : int * 
        con : int * 
        x : int[] * 
        incx : int * 
        ifail : int byref -> unit 

Parameters

n
Type: System..::..Int32
On entry: n, the number of elements in x.
con
Type: System..::..Int32
On entry: the scalar α.
x
Type: array<System..::..Int32>[]()[][]
An array of size [dim1]
Note: the dimension of the array x must be at least max1,1+n-1×incx.
On exit: the vector x. xi will be stored in x[1+i-1×incx], for i=1,2,,n.
Intermediate elements of x are unchanged.
incx
Type: System..::..Int32
On entry: the increment in the subscripts of x between successive elements of x.
Constraint: incx>0.
ifail
Type: System..::..Int32%
On exit: ifail=0 unless the method detects an error (see [Error Indicators and Warnings]).

Description

f06db performs the operation
xα,α,,αT,
where x is an n-element integer vector scattered with stride incx.

References

None.

Error Indicators and Warnings

ifail=-9000
An error occured, see message report.
ifail=-8000
Negative dimension for array value
ifail=-6000
Invalid Parameters value
ifail=-6000
Invalid Parameters value

Accuracy

Not applicable.

Parallelism and Performance

None.

Further Comments

None.

Example

See Also