资源简介
自己帮同学写的,C++求解矩阵AX = B,
代码片段和文件信息
/*
*File name: Complex.cpp
*Function purpose: To complate the mathematical operation of complex number.
*Author Date:2012-7-11
*Alter: No
*/
#include
#include
#include “Complex.h“
Complex::Complex(float re float im) {
real = re;
image = im;
}
void Complex::InitComplex() {
real = 0.0;
image = 0.0;
}
Complex Complex::operator+(const Complex &z) const {
return Complex(real+z.realimage+z.image);
}
/*
Complex Complex::operator-(const Complex &z) const {
return Complex(real-z.realimage-z.image);
}
*/
Complex Complex::operator*(const Complex &z) const {
return Complex(real*z.real-image*z.image real*z.image+image*z.real);
}
/*
Complex Complex::operator/(const Complex &z) const {
double delta = z.real*z.real + z.image*z.image;
return Complex((real*z.real + image*z.image)/delta
(z.real*image - real*z.image)/delta);
}
*/
float Complex::GetRealComplex()const {
return real;
}
float Complex::GetImageComplex()const {
return image;
}
/*
void Complex::PrintComplex() const {
if (image >= 0)
std::cout << std::left < else
std::cout << std::left << std::setw(12) << real << image << ‘i‘;
}*/
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1289 2012-08-09 21:22 Complex.cpp
文件 685 2012-08-05 14:42 Complex.h
文件 17844 2012-06-16 09:42 ComplexMatrix.aps
文件 9113 2012-08-05 23:29 ComplexMatrix.cpp
文件 1589 2012-08-05 18:45 ComplexMatrix.h
文件 2470 2012-06-16 09:42 ComplexMatrix.rc
文件 892 2012-05-06 11:17 ComplexMatrix.sln
文件 4335 2012-07-11 22:27 ComplexMatrix.vcxproj
文件 1763 2012-07-11 22:27 ComplexMatrix.vcxproj.filters
文件 143 2012-05-06 11:17 ComplexMatrix.vcxproj.user
目录 0 2012-10-16 07:26 Debug\
目录 0 2012-10-16 07:25 ipch\
目录 0 2012-10-16 07:26 ipch\complexmatrix-51b46127\
文件 2178 2012-08-05 23:37 main.cpp
文件 18047 2012-08-05 22:15 RealMatrix.cpp
文件 2684 2012-08-05 22:09 RealMatrix.h
文件 392 2012-06-16 09:42 resource.h
相关资源
- C++课件C++课件C++课件
- 自己写的Apriori算法c++实现
- 网速监控 v1.2 MFC VC C++ 网速监控 线程
- 舞伴伴舞问题的C++实现
- rrt实现图片搜索.zip
- 用VC++显示图像的灰度直方图
- VC++开发基于Microsoft Speech SDK的TTS软件
- cc++项目视频.txt
- c++ primer plus 第六版 课后习题答案
- FTP文件上传和管理类C++
- c++builder做图像处理项目的核心代码
- c++标准库函数中文chm
- C++ curl封装类
- iar.cc++.compiler.v1.30.3.50673.for.rl78-patch
- Bloom过滤器的C++实现
- C++实现数据结构源代码
- Intel C++ Compiler 9 10 11 license Key 注册文
- c++职工信息管理系统课程设计报告
- 检查抄袭作业程序
- VC++ MFC入门精讲.PPT
- 数据结构校园导航系统
- 国际象棋c++完整版
- 课程设计-学生成绩管理系统设计C++
- C++数值算法头文件
- 飞机订票系统.rar
- C++实现opencv+yolo+tensorflow+deepsort.txt
- 倍福+虚拟机+twincat.txt
-
ros move_ba
se中多个导航点的c++实现 - C++程序和C#程序通讯例程
- 自动寻路贪吃蛇C++源码
评论
共有 条评论