Modifies the pointers to parameters related to quantile computations.
Fortran:
status = vslssseditquantiles(task, quant_order_n, quant_order, quants, order_stats, order_stats_storage)
status = vsldsseditquantiles(task, quant_order_n, quant_order, quants, order_stats, order_stats_storage)
C:
status = vslsSSEditQuantiles(task, quant_order_n, quant_order, quants, order_stats, order_stats_storage);
status = vsldSSEditQuantiles(task, quant_order_n, quant_order, quants, order_stats, order_stats_storage);
The Fortran 90 interfaces are specified in the mkl_vsl.f90 include file, and the C interfaces are specified in the mkl_vsl_functions.h include file.
Name |
Type |
Description |
---|---|---|
task |
Fortran: TYPE(VSL_SS_TASK) C: VSLSSTaskPtr |
Descriptor of the task |
quant_order_n |
Fortran: INTEGER C: MKL_INT* |
Pointer to the number of quantile orders |
quant_order |
Fortran: REAL(KIND=4) DIMENSION(*) for vslssseditquantiles REAL(KIND=8) DIMENSION(*) for vsldsseditquantiles C: float* for vslsSSEditQuantiles double* for vsldSSEditQuantiles |
Pointer to the array of quantile orders |
quants |
Fortran: REAL(KIND=4) DIMENSION(*) for vslssseditquantiles REAL(KIND=8) DIMENSION(*) for vsldsseditquantiles C: float* for vslsSSEditQuantiles double* for vsldSSEditQuantiles |
Pointer to the array of quantiles |
order_stats |
Fortran: REAL(KIND=4) DIMENSION(*) for vslssseditquantiles REAL(KIND=8) DIMENSION(*) for vsldsseditquantiles C: float* for vslsSSEditQuantiles double* for vsldSSEditQuantiles |
Pointer to the array of order statistics |
order_stats_storage |
Fortran: INTEGER C: MKL_INT* |
Pointer to the storage format of the order statistics array |
The EditQuantiles routine replaces pointers to the number of quantile orders, the array of quantile orders, the array of quantiles, the array that holds order statistics, and the storage format for the order statistics with values passed into the routine. See Table "Storage format of matrix of observations and order statistics" for possible values of the order_statistics_storage parameter. If an input parameter is NULL, the corresponding parameter in the VSL Summary Statistics task descriptor remains unchanged.
Copyright © 1994 - 2011, Intel Corporation. All rights reserved.