代码搜索:协方差矩阵

找到约 10,000 项符合「协方差矩阵」的源代码

代码结果 10,000
www.eeworm.com/read/491953/6428912

h 矩阵dlg.h

// 矩阵Dlg.h : header file // #if !defined(AFX_DLG_H__D59A29BC_F370_44B1_ABCF_9C26A2F15497__INCLUDED_) #define AFX_DLG_H__D59A29BC_F370_44B1_ABCF_9C26A2F15497__INCLUDED_ #if _MSC_VER > 1000 #pr
www.eeworm.com/read/491953/6428916

rc2 矩阵.rc2

// // 矩阵.RC2 - resources Microsoft Visual C++ does not edit directly // #ifdef APSTUDIO_INVOKED #error this file is not editable by Microsoft Visual C++ #endif //APSTUDIO_INVOKED ////////
www.eeworm.com/read/491953/6428921

cpp 矩阵dlg.cpp

// 矩阵Dlg.cpp : implementation file // #include "stdafx.h" #include "矩阵.h" #include "矩阵Dlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endi
www.eeworm.com/read/491953/6428938

obj 矩阵dlg.obj

www.eeworm.com/read/490532/6447311

txt java矩阵计算.txt

import java.applet.Applet; import java.awt.*; public class Mymatrix extends Applet { Label m_prompt,n_prompt,x_prompt,y_prompt,A_martri,B_martri; TextField m_input,n_input,x_input,y_input,A_input,
www.eeworm.com/read/490350/6455510

cpp 矩阵乘方和.cpp

/*描述 给出一个n*n的矩阵和正整数k,请求出S=A+A^2+A^3+A^4+...+A^k的值.A^x表示x个A相乘的结果. 关于输入 输入包含一组数据. 第一行是三个正整数n k m, (n
www.eeworm.com/read/488613/6482762

asm 矩阵键盘程序.asm

ORG 0000H JMP MAIN MAIN: MOV SP,#60H MOV P3,#00001111B MOV R0,P3 LCALL DELAY ;消抖 MOV R0,P3 CJNE R0,#00001111B,TP1 JMP MAIN TP1: ;判断键盘所在行行号 JB P3.0,LINE1 MOV A,#00H LINE1:JB P3.1,LINE2 MO
www.eeworm.com/read/487961/6502914

cpp w对角矩阵.cpp

#include "iostream.h" //n阶w对角矩阵压缩存储到一维数组中(行主序) void twotone(int b[],int n) { int k; cout