Updating matrix_functions.h

pull/39/head
Silfurion 3 years ago
parent f4a19826af
commit b475fd554d

@ -1,8 +1,8 @@
/****************************************************************************** /******************************************************************************
* @file matrix_functions.h * @file matrix_functions.h
* @brief Public header file for CMSIS DSP Library * @brief Public header file for CMSIS DSP Library
* @version V1.10.0 * @version V1.10.1
* @date 08 July 2021 * @date 10 August 2022
* Target Processor: Cortex-M and Cortex-A cores * Target Processor: Cortex-M and Cortex-A cores
******************************************************************************/ ******************************************************************************/
/* /*
@ -620,6 +620,20 @@ void arm_mat_init_f32(
uint16_t nColumns, uint16_t nColumns,
float32_t * pData); float32_t * pData);
/**
* @brief Floating-point matrix initialization.
* @param[in,out] S points to an instance of the floating-point matrix structure.
* @param[in] nRows number of rows in the matrix.
* @param[in] nColumns number of columns in the matrix.
* @param[in] pData points to the matrix data array.
*/
void arm_mat_init_f64(
arm_matrix_instance_f64 * S,
uint16_t nRows,
uint16_t nColumns,
float64_t * pData);
/** /**

Loading…
Cancel
Save