-计算机-每天学习一点专业知识
全部博文(21)
发布时间:2018-12-24 11:17:00
[ft_raw, pt_raw] = uigetfile('xxx*.txt');filepath_raw = [pt_raw,ft_raw];fileID_raw = fopen(filepath_raw,'r');data = fscanf(fileID_raw, '%x');fclose(fileID_raw);......【阅读全文】
发布时间:2018-10-19 14:16:50
一、Graphviz + CodeViz简单介绍CodeViz是《Understanding The Linux Virtual Memory Manager》的作者 Mel Gorman 写的一款分析C/C++源代码中函数调用关系的open source工具(类似的open source软件有 egypt、ncc)。其基本原理是给 GCC 打个补丁(如果你的gcc版本不符合它的要求还得先下载正确的gcc.........【阅读全文】
发布时间:2018-10-19 13:54:19
http://www.doc88.com/p-8486970802125.html......【阅读全文】
发布时间:2018-10-19 13:47:33
一、Source Insight(SI)中有一个Base工程,是安装完SI后自动生成的一个工程,该工程里只有一个Utils.em文件,该文件是常用编辑宏的一个集合。 通过修改或添加宏就可以让宏实现我们.........【阅读全文】
发布时间:2018-09-21 17:52:35
Sub NDataCheck() '获取E列的数据,并校验 end_row = Range("E65536").End(xlUp).Row 'E列数据最后行号 For i = 2 To end_row 'If Cells(i, "E").Interior.ColorIndex 43 T.........【阅读全文】