/cmsis-dsp-latest/Source/QuaternionMathFunctions/ |
D | arm_rotation2quaternion_f32.c | 80 f32x4_t q1,q2, q; in arm_rotation2quaternion_f32() local 85 q = vdupq_n_f32(0.0f); in arm_rotation2quaternion_f32() 109 q[0] = 0.25f * doubler; in arm_rotation2quaternion_f32() 110 q[1] = R21 - R12; in arm_rotation2quaternion_f32() 111 q[2] = R02 - R20; in arm_rotation2quaternion_f32() 112 q[3] = R10 - R01; in arm_rotation2quaternion_f32() 123 q[0] = R21 - R12; in arm_rotation2quaternion_f32() 124 q[1] = 0.25f * doubler; in arm_rotation2quaternion_f32() 125 q[2] = R01 + R10; in arm_rotation2quaternion_f32() 126 q[3] = R02 + R20; in arm_rotation2quaternion_f32() [all …]
|
/cmsis-dsp-latest/Source/DistanceFunctions/ |
D | arm_dtw_distance_f32.c | 96 for(uint32_t q=0 ; q < queryLength; q++) in arm_dtw_distance_f32() local 105 for(uint32_t q = 1; q < queryLength; q++) in arm_dtw_distance_f32() local 107 if (!WIN(q,0)) in arm_dtw_distance_f32() 111 E(pDTW,q,0) = E(pDTW,q-1,0) + E(pDistance,q,0); in arm_dtw_distance_f32() 124 for(uint32_t q = 1; q < queryLength; q++) in arm_dtw_distance_f32() local 128 if (!WIN(q,t)) in arm_dtw_distance_f32() 132 E(pDTW,q,t) = in arm_dtw_distance_f32() 133 MIN(E(pDTW,q-1,t-1) + 2.0f * E(pDistance,q,t), in arm_dtw_distance_f32() 134 MIN(E(pDTW,q,t-1) + E(pDistance,q,t), in arm_dtw_distance_f32() 135 E(pDTW,q-1,t) + E(pDistance,q,t))); in arm_dtw_distance_f32()
|
D | arm_dtw_path_f32.c | 70 int q,t; in arm_dtw_path_f32() local 74 q=pDTW->numRows-1; in arm_dtw_path_f32() 76 while((q>0) || (t>0)) in arm_dtw_path_f32() 81 if (q>0) in arm_dtw_path_f32() 83 temp = E(pDTW,q-1,t); in arm_dtw_path_f32() 93 temp = E(pDTW,q,t-1); in arm_dtw_path_f32() 101 if ((q>0) && (t>0)) in arm_dtw_path_f32() 103 temp = E(pDTW,q-1,t-1); in arm_dtw_path_f32() 117 pPath[2 * (*pathLength)] = q; in arm_dtw_path_f32() 129 q=q-1; in arm_dtw_path_f32() [all …]
|
D | arm_dtw_init_window_q7.c | 71 for(int32_t q = 0; q < queryLength; q++) in arm_dtw_init_window_q7() local 75 pWindow->pData[templateLength*q + t] = (q7_t)(abs(q-t) <= windowSize); in arm_dtw_init_window_q7() 99 for(int32_t q = 0; q < queryLength; q++) in arm_dtw_init_window_q7() local 103 float32_t diag = (1.0f * q * templateLength / queryLength); in arm_dtw_init_window_q7() 104 …pWindow->pData[templateLength*q + t] = (q7_t)(fabsf((float32_t)t - diag) <= (float32_t)windowSize); in arm_dtw_init_window_q7()
|
/cmsis-dsp-latest/dsppp/RTE/Device/SSE-300-MPS3/ |
D | RTE_Device.h.base@1.1.0 | 20 // <q> USART (Universal synchronous - asynchronous receiver transmitter) [Driver_USART0] 24 // <q> USART (Universal synchronous - asynchronous receiver transmitter) [Driver_USART1] 28 // <q> MPC (Memory Protection Controller) [Driver_ISRAM0_MPC] 32 // <q> MPC (Memory Protection Controller) [Driver_ISRAM1_MPC] 36 // <q> MPC (Memory Protection Controller) [Driver_SRAM_MPC] 40 // <q> MPC (Memory Protection Controller) [Driver_QSPI_MPC] 44 // <q> PPC (Peripheral Protection Controller) [PPC_SSE300_MAIN0] 48 // <q> PPC (Peripheral Protection Controller) [PPC_SSE300_MAIN_EXP0] 52 // <q> PPC (Peripheral Protection Controller) [PPC_SSE300_MAIN_EXP1] 56 // <q> PPC (Peripheral Protection Controller) [PPC_SSE300_PERIPH0] [all …]
|
/cmsis-dsp-latest/Testing/PatternGeneration/ |
D | Decimate.py | 130 for (q,blockF,numTaps) in allConfigs: 134 nbsamples=factor*blockF*q 140 output=upfirdn(b,samples,up=1,down=q,axis=-1,mode='constant',cval=0) 150 ref += [q,len(b),len(samples),len(output)] 183 for (q,blockSize,numTapsF) in allConfigs: 185 numTaps = numTapsF * q 194 output=upfirdn(b,samples,up=q,down=1,axis=-1,mode='constant',cval=0) 195 output=output[0:blockSize*q] 204 ref += [q,len(b),len(samples),len(output)]
|
D | Quaternion.py | 18 q=Quaternion(matrix=mat) 19 if q.scalar < 0: 20 return(-q) 22 return(q)
|
D | QR.py | 89 q=np.identity(rows) 93 q[c:,c:] = np.dot(t,q[c:,c:]) 96 return(q,m,tau,h)
|
D | Matrix.py | 1040 def checkMyQR(m,q,r,format): argument 1043 nm = np.dot(q,r) 1053 assert (checkOrtho(q)) 1089 q,r,tau,h = QR.QR(m,eps=eps) 1092 checkMyQR(m,q,r,format) 1116 theRefQ += list(np.array(q).reshape(rows*rows)) 1125 q,r,tau,h = QR.QR(m,eps=eps) 1128 checkMyQR(m,q,r,format) 1140 theRefQ += list(np.array(q).reshape(d*d))
|
/cmsis-dsp-latest/PythonWrapper/examples/ |
D | example_1_5.py | 135 status,r,q,tau = dsp.arm_mat_qr_f64(m,dsp.DEFAULT_HOUSEHOLDER_THRESHOLD_F64,tmpa,tmpb) variable 145 assert(checkOrtho(q,err=1e-14)) 154 newm = np.dot(q,r) 159 status,r,q,tau = dsp.arm_mat_qr_f32(m,dsp.DEFAULT_HOUSEHOLDER_THRESHOLD_F32,tmpa,tmpb) variable 170 assert(checkOrtho(q,err=1.0e-6)) 179 newm = np.dot(q,r)
|
D | testdsp2.py | 404 q=Quaternion(matrix=mat) 405 if q.scalar < 0: 406 return(-q) 408 return(q)
|
D | Noise suppression.ipynb | 207 …q/+s/jP/2P57ALr/fP8WAFsA5P9PAOn+CwD8/oAADAEOALn/wv8tAe0Bqv9PALkBiQALATkBmwHwADgACQHaARsAdgAbAtAAXA… 266 …q/UQp9+Zu+5n6CsiPic0v4Dih17imdU0LAwEVikCNNAaDFH+d4EVVMbfE/4XWSjNuz+tyLd/uxV0ffCm/uxfYMbMhFYJNswz0F… 628 …/jCCdncz7/O/bHx8Hve9mvZIN8AIN39mn4GtHZCNly7MoqAqAb3Wc/lzvFnINP9M/AOEOqp95le+q+UUj7C23a5KKWUOgYtdKW… 669 …8OA1PYMOIVLS1Qr9MHHU+b6U40UtMhd3D2IiSMZEECLpdgJFIe5Df0kPf4YPrhvQjWOc3F8hG7d/q/q9p4P8rM9Pcc7CC8lDTb… 704 …q//nAIj/9gDrAEIAwv+qADMBZwDh/gEA6QBBAN3+ov4RAEYB7v8lAbT+4P8tAG//5//9/soAYQHMAGD/hQCKAGcBGAHQ/4kAzf… 919 …q/oIHt/lL/5EEPfYWBTwASfoUDYz80fqFDSD5dvcgCDL5f/sPBjP8hwC9BZT7KwOLAM/6gAYPAK/4WArY/6361wOy/cH/J/yA/… 999 …q//lAIf/9QDpAEEAwf+pADEBZQDg/gAA5wBBANz+ov4QAEQB7f8kAbT+4P8sAG7/5//9/sgAXwHKAGD/gwCJAGUBFgHP/4gAzf… 1193 …q/oIHt/lL/5EEPfYWBTwASfoUDYz80fqFDSD5dvcgCDL5f/sPBjP8hwC9BZT7KwOLAM/6gAYPAK/4WArY/6361wOy/cH/J/yA/… 1379 …q/0r/rK/S0CCwleCof/C+1m8vH+AQTUCLX9w/3/BvYJ2AL3/5IIdw18EdkSvQ2vAoMAdRCnE9cNYQzYCIgE5wXl/w4AqAnwC0M… 1670 …q/6R/x//Qv8AAGj/2gDn/iAA1f67AM4A9P8S/yMArf7u/7T+J//O/yH/vv7O/rX+uP4UAcf/9ACR/wX/oAB9/xj/5v8IALP/8P… [all …]
|
/cmsis-dsp-latest/Testing/Source/Tests/ |
D | DistanceTestsF32.cpp | 37 for(int q=0; q < this->queryLength; q++) in test_dtw_distance_f32() local 41 *c = fabs(inpA[q] - inpB[t]); in test_dtw_distance_f32() 58 for(int q=0; q < this->queryLength; q++) in test_dtw_distance_f32() local 65 if (window.pData[q*this->templateLength+t]) in test_dtw_distance_f32() 67 *c = fabs(inpA[q] - inpB[t]); in test_dtw_distance_f32()
|
D | DECIMF32.cpp | 31 this->q = pConfig[0]; in test_fir_decimate_f32() 41 this->q, in test_fir_decimate_f32() 86 this->q = pConfig[0]; in test_fir_interpolate_f32() 96 this->q, in test_fir_interpolate_f32()
|
D | DECIMF64.cpp | 31 this->q = pConfig[0]; in test_fir_decimate_f64() 41 this->q, in test_fir_decimate_f64() 87 this->q = pConfig[0]; 97 this->q,
|
D | DECIMQ15.cpp | 34 this->q = pConfig[0]; in test_fir_decimate_q15() 43 this->q, in test_fir_decimate_q15() 86 this->q = pConfig[0]; in test_fir_interpolate_q15() 95 this->q, in test_fir_interpolate_q15()
|
D | DECIMQ31.cpp | 34 this->q = pConfig[0]; in test_fir_decimate_q31() 44 this->q, in test_fir_decimate_q31() 89 this->q = pConfig[0]; in test_fir_interpolate_q31() 98 this->q, in test_fir_interpolate_q31()
|
/cmsis-dsp-latest/Testing/ |
D | convertToOld.py | 34 q = deque(path) 35 q.popleft() 37 while q: 38 n = q.popleft()
|
D | summaryBench.py | 31 q = deque(path) 32 q.popleft() 34 while q: 35 n = q.popleft()
|
D | processResult.py | 62 q = deque(path) 63 q.popleft() 65 while q: 66 n = q.popleft()
|
/cmsis-dsp-latest/Testing/Include/Tests/ |
D | DECIMF64.h | 28 int q; variable
|
D | DECIMF32.h | 28 int q; variable
|
D | DECIMQ15.h | 28 int q; variable
|
D | DECIMQ31.h | 28 int q; variable
|
/cmsis-dsp-latest/PythonWrapper/examples/kws_example/ |
D | kws.ipynb | 413 …AAhN10tWB1G8Y9CnqDF/SxHO+zBydsfh0z6fc//xcy772E+fzIxBn6LCloMleOCztXjmuy2Gnvc/q/a77Cs6dd7QaxDFEgZ9ig… 443 …q/Tf+xv4Z/mn9+fyL/Uj+NP75/O/8/Pze/IH9dv1s/cr8tfzo/AD9sP3+/UT9+fwt/t/9vf0q/qT+kf+R/xAAEAAv/9//b//y/… 503 …q+VC6i3ZdiAtz2nbJbKzV15WNt60r6E1TmVtF2bdtpLt5nsxTOqPmunZn2mq9FgC6gfWR8pYfeTXz7SOo7eOmsJo4SxYD9UQnq… 1947 …70yWKfZipjIKIyJUAvgng205igdNEUuc8Xoxke/gRRcbj+3cY0d/6wHuc1w921i+I894LATzlit+q/dmo1BK+kbH3nfa7RwCsV…
|