arm mat init q31 8c source
CMSIS DSP Software Library: arm_mat_init_q31.c Source File
Main Page
Modules
Data Structures
Files
Examples
File List
Globals
arm_mat_init_q31.c
Go to the documentation of this file.00001 /* ----------------------------------------------------------------------
00002 * Copyright (C) 2010 ARM Limited. All rights reserved.
00003 *
00004 * $Date: 29. November 2010
00005 * $Revision: V1.0.3
00006 *
00007 * Project: CMSIS DSP Library
00008 * Title: arm_mat_init_q31.c
00009 *
00010 * Description: Q31 matrix initialization.
00011 * Target Processor: Cortex-M4/Cortex-M3
00012 *
00013 * Version 1.0.3 2010/11/29
00014 * Re-organized the CMSIS folders and updated documentation.
00015 *
00016 * Version 1.0.2 2010/11/11
00017 * Documentation updated.
00018 *
00019 * Version 1.0.1 2010/10/05
00020 * Production release and review comments incorporated.
00021 *
00022 * Version 1.0.0 2010/09/20
00023 * Production release and review comments incorporated.
00024 *
00025 * Version 0.0.5 2010/04/26
00026 * incorporated review comments and updated with latest CMSIS layer
00027 *
00028 * Version 0.0.3 2010/03/10
00029 * Initial version
00030 * -------------------------------------------------------------------------- */
00031
00032
00033 #include "arm_math.h"
00034
00058 void arm_mat_init_q31(
00059 arm_matrix_instance_q31 * S,
00060 uint16_t nRows,
00061 uint16_t nColumns,
00062 q31_t * pData)
00063 {
00064 /* Assign Number of Rows */
00065 S->numRows = nRows;
00066
00067 /* Assign Number of Columns */
00068 S->numCols = nColumns;
00069
00070 /* Assign Data pointer */
00071 S->pData = pData;
00072 }
00073
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines
Generated on Mon Nov 29 2010 17:19:57 for CMSIS DSP Software Library by
1.7.2
Wyszukiwarka