-
参考MATLAB的VC绘图类设计实现-[1]
确切地说是1D绘图类。
设计初衷,抛弃“基于MATLAB6.X混编而利用MATLAB图形库”的思路,参考MATLAB绘图代码和思路,及成熟的Grapher绘图思路,以C++类的思路建立VC++绘图类,方便科学计算成图。
借鉴一。MATLAB图形
借鉴二。Grapher图形
没有评论 -
VC6.0常见错误解决方案
Q:cannot open include file ‘afxres.rc’.
A:
afxres.h 和afxres.rc是visual studio 自带的头文件。不能打开这个文件说明是头文件出问题,或编译系统没有找到包含afxres.rc的头文件。查看环境变量 tools->option->directories->include files。仔细查看有没有包含vc98\mfc\include 和vc98\include,发现没有include mfc\include文件夹。 加入,编译成功。另外: 1。查看library files ,确认vc98\lib 和vc98\mfc\lib也都在。
(http://www.phpchina.com/html/52/45052_itemid_16762.html)
Q:“Fatal error C1001 Internal complier error”(致命错误 C1001 内部编译器错误)
A:
测试,Visual Studio6 Service Pack5,可以解决这个问题。
List of bugs that are fixed in Visual Studio 6.0 Service Pack 6
(http://support.microsoft.com/kb/834001/)