You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
217 lines
5.5 KiB
C
217 lines
5.5 KiB
C
/* ----------------------------------------------------------------------
|
|
* Project: CMSIS DSP Library
|
|
* Title: arm_mat_qr_f64.c
|
|
* Description: Double floating-point matrix QR decomposition.
|
|
*
|
|
* $Date: 15 June 2022
|
|
* $Revision: V1.11.0
|
|
*
|
|
* Target Processor: Cortex-M and Cortex-A cores
|
|
* -------------------------------------------------------------------- */
|
|
/*
|
|
* Copyright (C) 2010-2022 ARM Limited or its affiliates. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the License); you may
|
|
* not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an AS IS BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include "dsp/matrix_functions.h"
|
|
#include "dsp/matrix_utils.h"
|
|
|
|
|
|
/**
|
|
@ingroup groupMatrix
|
|
*/
|
|
|
|
|
|
/**
|
|
@addtogroup MatrixQR
|
|
@{
|
|
*/
|
|
|
|
/**
|
|
@brief QR decomposition of a m x n double floating point matrix with m >= n.
|
|
@param[in] pSrc points to input matrix structure. The source matrix is modified by the function.
|
|
@param[in] threshold norm2 threshold.
|
|
@param[out] pOutR points to output R matrix structure of dimension m x n
|
|
@param[out] pOutQ points to output Q matrix structure of dimension m x m (can be NULL)
|
|
@param[out] pOutTau points to Householder scaling factors of dimension n
|
|
@param[inout] pTmpA points to a temporary vector of dimension m.
|
|
@param[inout] pTmpB points to a temporary vector of dimension m.
|
|
@return execution status
|
|
- \ref ARM_MATH_SUCCESS : Operation successful
|
|
- \ref ARM_MATH_SIZE_MISMATCH : Matrix size check failed
|
|
|
|
@par pOutQ is optional:
|
|
pOutQ can be a NULL pointer.
|
|
In this case, the argument will be ignored
|
|
and the output Q matrix won't be computed.
|
|
|
|
|
|
@par Norm2 threshold
|
|
For the meaning of this argument please
|
|
refer to the \ref MatrixHouseholder documentation
|
|
|
|
*/
|
|
|
|
arm_status arm_mat_qr_f64(
|
|
const arm_matrix_instance_f64 * pSrc,
|
|
const float64_t threshold,
|
|
arm_matrix_instance_f64 * pOutR,
|
|
arm_matrix_instance_f64 * pOutQ,
|
|
float64_t * pOutTau,
|
|
float64_t *pTmpA,
|
|
float64_t *pTmpB
|
|
)
|
|
|
|
{
|
|
|
|
|
|
uint32_t col=0;
|
|
int32_t nb,pos;
|
|
float64_t *pa,*pc;
|
|
float64_t beta;
|
|
float64_t *pv;
|
|
float64_t *pdst;
|
|
float64_t *p;
|
|
float64_t sum;
|
|
|
|
if (pSrc->numRows < pSrc->numCols)
|
|
{
|
|
return(ARM_MATH_SIZE_MISMATCH);
|
|
}
|
|
|
|
memcpy(pOutR->pData,pSrc->pData,pSrc->numCols * pSrc->numRows*sizeof(float64_t));
|
|
pOutR->numCols = pSrc->numCols;
|
|
pOutR->numRows = pSrc->numRows;
|
|
|
|
p = pOutR->pData;
|
|
|
|
pc = pOutTau;
|
|
for(col=0 ; col < pSrc->numCols; col++)
|
|
{
|
|
uint32_t i,j,k;
|
|
COPY_COL_F64(pOutR,col,col,pTmpA);
|
|
|
|
beta = arm_householder_f64(pTmpA,threshold,pSrc->numRows - col,pTmpA);
|
|
*pc++ = beta;
|
|
|
|
pdst = pTmpB;
|
|
|
|
/* v.T A(col:,col:) -> tmpb */
|
|
for(j=0;j<pSrc->numCols-col; j++)
|
|
{
|
|
pa = p+j;
|
|
pv = pTmpA;
|
|
sum = 0.0;
|
|
for(k=0;k<pSrc->numRows-col; k++)
|
|
{
|
|
sum += *pv++ * *pa;
|
|
pa += pOutR->numCols;
|
|
}
|
|
*pdst++ = sum;
|
|
}
|
|
|
|
/* A(col:,col:) - beta v tmpb */
|
|
pa = p;
|
|
for(j=0;j<pSrc->numRows-col; j++)
|
|
{
|
|
for(i=0;i<pSrc->numCols-col; i++)
|
|
{
|
|
*pa = *pa - beta * pTmpA[j] * pTmpB[i] ;
|
|
pa++;
|
|
}
|
|
pa += col;
|
|
}
|
|
|
|
/* Copy Householder reflectors into R matrix */
|
|
pa = p + pOutR->numCols;
|
|
for(k=0;k<pSrc->numRows-col-1; k++)
|
|
{
|
|
*pa = pTmpA[k+1];
|
|
pa += pOutR->numCols;
|
|
}
|
|
|
|
p += 1 + pOutR->numCols;
|
|
}
|
|
|
|
/* Generate Q if requested by user matrix */
|
|
|
|
if (pOutQ != NULL)
|
|
{
|
|
/* Initialize Q matrix to identity */
|
|
memset(pOutQ->pData,0,sizeof(float64_t)*pOutQ->numRows*pOutQ->numRows);
|
|
|
|
pa = pOutQ->pData;
|
|
for(col=0 ; col < pOutQ->numCols; col++)
|
|
{
|
|
*pa = 1.0;
|
|
pa += pOutQ->numCols+1;
|
|
}
|
|
|
|
nb = pOutQ->numRows - pOutQ->numCols + 1;
|
|
|
|
pc = pOutTau + pOutQ->numCols - 1;
|
|
for(col=0 ; col < pOutQ->numCols; col++)
|
|
{
|
|
int32_t i,j,k;
|
|
pos = pSrc->numRows - nb;
|
|
p = pOutQ->pData + pos + pOutQ->numCols*pos ;
|
|
|
|
|
|
COPY_COL_F64(pOutR,pos,pos,pTmpA);
|
|
pTmpA[0] = 1.0;
|
|
pdst = pTmpB;
|
|
|
|
/* v.T A(col:,col:) -> tmpb */
|
|
for(j=0;j<pOutQ->numRows-pos; j++)
|
|
{
|
|
pa = p+j;
|
|
pv = pTmpA;
|
|
sum = 0.0;
|
|
for(k=0;k<pOutQ->numRows-pos; k++)
|
|
{
|
|
sum += *pv++ * *pa;
|
|
pa += pOutQ->numCols;
|
|
}
|
|
*pdst++ = sum;
|
|
}
|
|
|
|
pa = p;
|
|
beta = *pc--;
|
|
for(j=0;j<pOutQ->numRows-pos; j++)
|
|
{
|
|
for(i=0;i<pOutQ->numCols-pos; i++)
|
|
{
|
|
*pa = *pa - beta * pTmpA[j] * pTmpB[i] ;
|
|
pa++;
|
|
}
|
|
pa += pos;
|
|
}
|
|
|
|
|
|
nb++;
|
|
}
|
|
}
|
|
|
|
arm_status status = ARM_MATH_SUCCESS;
|
|
/* Return to application */
|
|
return (status);
|
|
}
|
|
|
|
|
|
/**
|
|
@} end of MatrixQR group
|
|
*/
|