联合开发网   搜索   要求与建议
                登陆    注册
排序按匹配   按投票   按下载次数   按上传日期
按分类查找All 源码/资料(347) 

[源码/资料] 《MATLAB应用大全》书籍和源码

本书由浅入深,全面、系统地介绍了MATLAB编程和开发的方方面面。书中的每章都提供了大量有针对性的实例,供读者实战演练。另外,为了帮助读者更高效、直观地学习,本书每章重点内容都专门录制了对应的教学视频。这些视频和本书所有的实例文件一起收录于配书DVD光盘中,全书共23章,分为7篇。基础篇介绍了MATLAB基础、数组和矩阵分析、字符串分析:科学运算篇介绍了MATLAB数据分析、积分和微分运算、概率和 (2022-04-20, matlab, 174469KB, 下载0次)

http://www.pudn.com/Download/item/id/1650416640452353.html

[源码/资料] C++程序设计经典300例源代码1

C++程序设计经典300例针对C++语言的各个应用方向,分为3篇共16章,一共收集了300个典型实例。第1篇涉及C++语言的基础语法、数组、字符串、内存、指针、函数及类的应用等基础知识。第2篇涵盖泛型编程技术、输入/输出系统及如何解决各类经典出错案例。第3篇重点针对各类应用展开介绍,如一些基础技术的复杂应用实例、Socket网络及进程间通信、算法、多线程、动态链接库技术的应用等
According to each application direction of C + + language, it is divided into 3 articles, 16 chapters, and 300 typical examples are collected. The first part deals with the application of basic syntax, array, string, memory, pointer, function and class of C + + language. Chapter 2 covers generic programming techniques, input / output systems, and how to solve classic error cases. The third part focuses on various applications, such as complex application examples of some basic technologies, socket network and interprocess communication, algorithms, multithreading, dynamic link library technology and so on. Finally, the application of digital image processing technology and 3D simulation technology is demonstrated by examples. (2020-11-27, C/C++, 3930KB, 下载0次)

http://www.pudn.com/Download/item/id/1606447120888034.html

[源码/资料] C++语言导学

《计算机科学丛书:C++语言导学》作者是C++语言的设计者和实现者,写作本书的目的是让有经验的程序员快速了解C++现代语言。书中几乎介绍了C++语言的全部核心功能和重要的标准库组件,以很短的篇幅将C++语言的主要特性呈现给读者,并给出一些关键示例,让读者用很短的时间就能对现代C++的概貌有一个清晰的了解,尤其是关于面向对象编程和泛型编程的知识。 本书没有涉及太多C++语言的细节,非常适合想熟悉C++语言新特性的C/C++程序设计人员以及精通其他高级语言而想了解C++语言特性和优点的人员。
The author of "Computer Science Series: introduction to C + + language" is the designer and implementer of C + + language. The purpose of writing this book is to let experienced programmers quickly understand C + + modern language. The book introduces almost all the core functions and important standard library components of C + + language, presents the main features of C + + language to readers in a short space, and gives some key examples, so that readers can have a clear understanding of the general situation of modern C + + in a very short time, especially the knowledge about object-oriented programming and generic programming. This book does not involve too many details of C + + language. It is very suitable for C / C + + programmers who want to be familiar with the new features of C + + language and those who are proficient in other high-level languages and want to understand the features and advantages of C + + language. (2020-10-09, C/C++, 39782KB, 下载2次)

http://www.pudn.com/Download/item/id/1602258392628878.html

[源码/资料] one

实验1 C++基础编程 实验目的 ? 掌握VC++ 6.0进行程序设计的基本步骤。 ? 学会在VC++ 6.0环境下进行简单C++程序设计。 ? 掌握new和delete的用法。 ? 熟练使用string类处理字符串。 ? 重点掌握函数的参数传递方式、函数重载、函数默认值的实现。 实验学时 本次实验需要2个学时。 实验要求 ? 实验上机之前,根据实验内容要求,自行设计编写程序,完成预习报告。 ? 实验上机时调试并修正程序。 ? 当次上机结束前分析错误原因并给出实验结论,提交实验报告。 实验内容 1.基础部分 (1)动态分配保存10个成绩数组的存储空间,并对成绩进行输入,求出最高分并输出,用new和delete。 { double*pd=new double [10]; double k; for(int i=0;i<10;i++) cin>>pd[i]; for(int j=0;j<9;j++) { if(pd[j]>pd[j+1]) { k=pd[j]; pd[j]=pd[j+1]; pd[j+1]=k; } if(j==8) cout<<pd[j+1]<<endl; } system("pause"); return 0; } (2).定义函数,实现两个变量的交换(用传递指针和传递引用的方式分别实现),并对比区别。 (4).上述第(3)题,如果希望给形参默认值,如a=1,b=2,c=3,该如何修改和如何调用?
Experiment 1 C++ Basic Programming Experimental purpose Grasp the basic steps of VC++ 6.0 programming. Learn to design simple C++ programs in the environment of VC++ 6.0. Master the usage of new and delete. Proficiency in string class processing. Emphasis is laid on how to transfer function parameters, how to overload function and how to realize default value of function. Experimental hours This experiment needs two hours. Experimental requirements Before the experiment is put on the computer, according to the requirement of the experiment content, the program is designed and written by oneself, and the preview report is completed. Debug and correct the program when the experiment is on the computer. (2019-05-01, C/C++, 17KB, 下载1次)

http://www.pudn.com/Download/item/id/1556693802118726.html

[源码/资料] Essential C++

C++ primer 是公认最好的入门教程,十分注重编程规范。不过虽然说是入门,但是讲的比较全,部分内容比较深,可能对0基础的新手有一定难度。 而essential C++是其他作者对C++ primer改编的简略版本,难度较低,不过与C++ primer一脉相承,因此也有较好的规范。
C++ primer is generally regarded as the best introductory tutorial, paying great attention to programming specifications.However, although it is a beginner, but it is full, some of the content is deeper, may have some difficulties for the basis of the zero novice. And essential C++ is the abridged version that other author ADAPTS to C++ primer, difficulty is lower, nevertheless with C++ primer in the same vein, also have better specification accordingly. (2018-11-16, C/C++, 8402KB, 下载10次)

http://www.pudn.com/Download/item/id/1542335300195227.html

[源码/资料] LU decomposition

LU分解的程序实现,要求如下: 1)不限编程语言,程序为可执行文件,例如 .m文件等,不能是word或者txt文档; 2)程序可以实现任意矩阵的LU分解,并附上简单实例; 3)同时提交程序的说明文档,对程序简单说明;
The implementation of the LU decomposition program is required as follows: 1) unlimited programming language, programs for executable files, such as.M files, etc., can not be word or TXT documents; 2) the program can realize the LU decomposition of any matrix, and a simple example is attached. 3) submitting the instructions of the program at the same time, and simply explaining the program; (2017-12-17, C/C++, 206KB, 下载3次)

http://www.pudn.com/Download/item/id/1513514583362762.html

[源码/资料] VisualC++

vc++数字图像处理 ,是一本很不错的介绍数字图像方面的书籍,这里有本书的全部源码
vc++ digital image processing is a very good introduction to digital imaging books, there is the book s all-source (2004-06-15, Visual C++, 5859KB, 下载1183次)

http://www.pudn.com/Download/item/id/1087270647634140.html
总计:347