⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 csolverearmeet.cpp

📁 摄影测量中进行后方交会的程序
💻 CPP
字号:
// CSolveRearMeet.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "Matrix.h"
#include "RearMeet.h"

int main(int argc, char* argv[])
{
	double dxyXYZ[4][5] = { 
		{-0.08615, -0.06899, 36589.41, 25273.32, 2195.17},
		{-0.05340,  0.08221, 37631.08, 31324.51,  728.69},
		{-0.01478, -0.07663, 39100.97, 24934.98, 2386.50},
		{ 0.01046,  0.06443, 40426.54, 30319.81,  757.31}
							};
	CMatrix maxyXYZ;
	maxyXYZ.CreateData(dxyXYZ[0], 4, 5);
	CRearMeet reMe(0.15324, 50000, 4, 0, 0, maxyXYZ);
	reMe.Calculate();
   	reMe.Display();
//	double a[9] = {1,4,1,1,4,5,2,3,6};
//	double b[8] = {1,1,2,0,2,3,0,3};
//	CMatrix A,B,C;
//	A.CreateData(a,3,3);
//	B.CreateData(b,4,2);
// 	B = A.GetConvertMatrix(1);
//	C = A.GetConvertMatrix();
//	//C = A * B;
//	A.DisplayMatrix();
// 	B.DisplayMatrix();
//     C.DisplayMatrix();
	printf("Hello World!\n");
	return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -