Rate This Document
Findability
Accuracy
Completeness
Readability

v?sqr

Perform element-wise squaring of a vector.

Interface Definition

C interface:

void vssqr(const int len, const float* src, float* dst);

void vdsqr(const int len, const double* src, double* dst);

Fortran interface:

CALL VSSQR(LEN, SRC, DST);

CALL VDSQR(LEN, SRC, DST);

Parameters

Parameter

Type

Description

Input/Output

len

Integer

Number of elements in the input vector.

If len ≤ 0, the system displays a message indicating that the value of len is invalid.

Input

src

  • For vssqr, src is of single-precision floating-point type.
  • For vdsqr, src is of double-precision floating-point type.

Input vector src with length len.

If the pointer is null, the system prompts a null pointer error.

Input

dst

  • For vssqr, dst is of single-precision floating-point type.
  • For vdsqr, dst is of double-precision floating-point type.

Output vector dst with length len.

If the pointer is null, the system prompts a null pointer error.

Output

Return Value

  • The square of a number is returned for each operation value. The value range is [0, +INF).
  • If the value of src is ±0, the value of dst is +0.
  • If the value of src is ±∞, the value of dst is +∞.
  • If the value of src is NaN, the value of dst is NaN.

Dependencies

C: "kvml.h"

Fortran: "kvml.f03"

Examples

C interface:

    int i, len = 4; 
    float src[len] = [0.0f, 0.5f, 1.0f, 5.0f]; 
    float* dst = (float*)malloc(sizeof(float) * len); 
    if (dst == NULL) { 
        printf("Malloc Failed!\n"); 
        return 0; 
    } 
    vssqr(len, src, dst); 
    /** 
     *  Output dst: 
     *     0.0  0.25  1.0  25.0 
     * 
     */

Fortran interface:

    INTEGER :: LEN = 4 
    REAL(4) SRC(4)  
    REAL(4) DST(4) 
    DATA SRC /1.1, 2.6, 3.2, 4.8/ 
    CALL VSSQR(LEN, SRC, DST) 
    !  
    ! OUTPUT DST: 
    !     1.210000038, 6.759999275, 10.240000725, 23.040000916 
    !