Welcome![Sign In][Sign Up]
Location:
Search - overview m

Search list

[Other resourceA_Matlab_Tour_of_Wavelet_Programming

Description: This document is intended to serve as an introduction to Wavelet processing through a set of Matlab experiments. These experiments will gives an overview of three fundamental tasks in signal and image processing : signal, denoising and compression. These scripts are selfs contents (needed additional Matlab functions can be downloaded while reading the lectures). Each one of these five lectures should take between 1h and 2h in order to tests the various features of the scripts. One should copy/paste the provided code into a file names e.g. tp1.m, and launch the script directly from Matlab comand line > tp1 . Some of the scripts contains \"holes\" that you should try to fill on your own. I also provide the complete correction of these lectures as a set of Matlab scripts, but you should try as much as possible to avoid using them.
Platform: | Size: 6065881 | Author: 风帆 | Hits:

[OtherINTRODUCTION TO MATLAB FOR

Description: 1 Tutorial lessons 1 1 1.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 1.2 Basic features . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2 1.3 A minimum MATLAB session . . . . . . . . . . . . . . . . . . . . . . . . . . 2 1.3.1 Starting MATLAB . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2 1.3.2 Using MATLAB as a calculator . . . . . . . . . . . . . . . . . . . . . 4 1.3.3 Quitting MATLAB . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 1.4 Getting started . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 1.4.1 Creating MATLAB variables . . . . . . . . . . . . . . . . . . . . . . . 5 1.4.2 Overwriting variable . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 1.4.3 Error messages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 1.4.4 Making corrections . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 1.4.5 Controlling the hierarchy of operations or precedence . . . . . . . . . 6 1.4.6 Controlling the appearance of °oating point number . . . . . . . . . . 8 1.4.7 Managing the workspace . . . . . . . . . . . . . . . . . . . . . . . . . 8 1.4.8 Keeping track of your work session . . . . . . . . . . . . . . . . . . . 9 1.4.9 Entering multiple statements per line . . . . . . . . . . . . . . . . . . 9 1.4.10 Miscellaneous commands . . . . . . . . . . . . . . . . . . . . . . . . . 10 1.4.11 Getting help . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 1.5 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 2 Tutorial lessons 2 12 2.1 Mathematical functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12 2.1.1 Examples . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 2.2 Basic plotting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 2.2.1 overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 2.2.2 Creating simple plots . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 2.2.3 Adding titles, axis labels, and annotations . . . . . . . . . . . . . . . 15 2.2.4 Multiple data sets in one plot . . . . . . . . . . . . . . . . . . . . . . 16 2.2.5 Specifying line styles and colors . . . . . . . . . . . . . . . . . . . . . 17 2.3 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 2.4 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 2.5 Matrix generation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 2.5.1 Entering a vector . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 2.5.2 Entering a matrix . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20 2.5.3 Matrix indexing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21 2.5.4 Colon operator . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22 2.5.5 Linear spacing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22 2.5.6 Colon operator in a matrix . . . . . . . . . . . . . . . . . . . . . . . . 22 2.5.7 Creating a sub-matrix . . . . . . . . . . . . . . . . . . . . . . . . . . 23 2.5.8 Deleting row or column . . . . . . . . . . . . . . . . . . . . . . . . . . 25 2.5.9 Dimension . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25 2.5.10 Continuation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26 2.5.11 Transposing a matrix . . . . . . . . . . . . . . . . . . . . . . . . . . . 26 2.5.12 Concatenating matrices . . . . . . . . . . . . . . . . . . . . . . . . . . 26 2.5.13 Matrix generators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 2.5.14 Special matrices . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28 2.6 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29 3 Array operations and Linear equations 30 3.1 Array operations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30 3.1.1 Matrix arithmetic operations . . . . . . . . . . . . . . . . . . . . . . . 30 3.1.2 Array arithmetic operations . . . . . . . . . . . . . . . . . . . . . . . 30 3.2 Solving linear equations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32 3.2.1 Matrix inverse . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33 3.2.2 Matrix functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34 3.3 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34 4 Introduction to programming in MATLAB 35 4.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35 4.2 M-File Scripts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35 4.2.1 Examples . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36 4.2.2 Script side-eRects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37 4.3 M-File functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38 4.3.1 Anatomy of a M-File function . . . . . . . . . . . . . . . . . . . . . . 38 4.3.2 Input and output arguments . . . . . . . . . . . . . . . . . . . . . . . 40 4.4 Input to a script ¯le . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40 4.5 Output commands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41 4.6 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 42 5 Control °ow and operators 43 5.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43 5.2 Control °ow . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43 5.2.1 The ``if...end'' structure . . . . . . . . . . . . . . . . . . . . . . . 43 5.2.2 Relational and logical operators . . . . . . . . . . . . . . . . . . . . . 45 5.2.3 The ``for...end'' loop . . . . . . . . . . . . . . . . . . . . . . . . . 45 5.2.4 The ``while...end'' loop . . . . . . . . . . . . . . . . . . . . . . . 46 5.2.5 Other °ow structures . . . . . . . . . . . . . . . . . . . . . . . . . . . 46 5.2.6 Operator precedence . . . . . . . . . . . . . . . . . . . . . . . . . . . 47 5.3 Saving output to a ¯le . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47 5.4 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48 6 Debugging M-¯les 49 6.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49 6.2 Debugging process . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49 6.2.1 Preparing for debugging . . . . . . . . . . . . . . . . . . . . . . . . . 50 6.2.2 Setting breakpoints . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50 6.2.3 Running with breakpoints . . . . . . . . . . . . . . . . . . . . . . . . 50 6.2.4 Examining values . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51 6.2.5 Correcting and ending debugging . . . . . . . . . . . . . . . . . . . . 51 6.2.6 Ending debugging . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51 6.2.7 Correcting an M-¯le . . . . . . . . . . . . . . . . . . . . . . . . . . . 51
Platform: | Size: 258288 | Author: taffy320 | Hits:

[Othersome-ebooks-for-mac-developers

Description: 关于苹果机开发的电子书:1.Apple.Mac.OS.X.Development.Tools.Overview.Jun.2003.eBook 2.Apple.The.Objective.C.Programming.Language.Dec.2006.eBook 3.Apress.AppleScript.The.Comprehensive.Guide.to.Scripting.and.Automation.on.Mac.OS.X.2nd.Edition.Sep.2006.eBook-BBL 4.Apple.A.Quick.Tour.of.Xcode.Aug.2003.eBook 5.FreeBook.AppleScript.for.Absolute.Starters.Mar.2003.eBook 6.FreeBook.Become.an.Xcoder.Start.Programming.the.Mac.use.Objective-C.Apr.2006.eBook-err
Platform: | Size: 21768192 | Author: 徐怡南 | Hits:

[matlabA_Matlab_Tour_of_Wavelet_Programming

Description: This document is intended to serve as an introduction to Wavelet processing through a set of Matlab experiments. These experiments will gives an overview of three fundamental tasks in signal and image processing : signal, denoising and compression. These scripts are selfs contents (needed additional Matlab functions can be downloaded while reading the lectures). Each one of these five lectures should take between 1h and 2h in order to tests the various features of the scripts. One should copy/paste the provided code into a file names e.g. tp1.m, and launch the script directly from Matlab comand line > tp1 . Some of the scripts contains "holes" that you should try to fill on your own. I also provide the complete correction of these lectures as a set of Matlab scripts, but you should try as much as possible to avoid using them. -This document is intended to serve as an introduction to Wavelet processing through a set of Matlab experiments. These experiments will gives an overview of three fundamental tasks in signal and image processing: signal, denoising and compression. These scripts are selfs contents (needed additional Matlab functions can be downloaded while reading the lectures). Each one of these five lectures should take between 1h and 2h in order to tests the various features of the scripts. One should copy/paste the provided code into a file names eg tp1.m, and launch the script directly from Matlab comand line> tp1. Some of the scripts contains holes that you should try to fill on your own.I also provide the complete correction of these lectures as a set of Matlab scripts, but you should try as much as possible to avoid using them.
Platform: | Size: 6066176 | Author: 风帆 | Hits:

[MTKmtk_schematics

Description: Mtk schematics overview
Platform: | Size: 1122304 | Author: ajent | Hits:

[BooksGPSGeneratorSimulation

Description: 概述了 GPS[全球定位系统] P码产生原理 ,用 Mat lab 的 m语言实现了 P 码的产 生 ,进而分析了其自相关和互相关特性 ,为进一步研究 P码直接捕获和 P [ Y]码的破译提供了 依据-Provides an overview of GPS [Global Positioning System] P code generated principle, using the Mat lab language m realize the selection of the P code, and then analyzes its autocorrelation and cross correlation properties, for further study on P code direct capture and P [Y] Code provide a basis for deciphering
Platform: | Size: 661504 | Author: captain | Hits:

[ARM-PowerPC-ColdFire-MIPSARM

Description: 技术伴随着21世纪的曙光,人类迎来了一个充满希望的新时代:P C时代。P C时代的到来,使得人们开始越来越多地接触到一个新的概念一一嵌入式产品。“嵌入式”是近几年来刚出现的也是最热门的名词之一,而作为A R M嵌入式系统又是嵌入式系统应用的典范,在下面的文字中给出了ARM嵌入式系统的概述,使读者能有效的了解ARM嵌入式系统的特征-Technology associated with the dawn of the 21st century, mankind has ushered in a new era full of hope: PC era. PC era, making more and more people began to come into contact with the concept of a new embedded product 11. " Embedded" is emerging in recent years is one of the most popular terms, as ARM embedded system is a model of embedded system applications, the text below gives an overview of ARM embedded system, so that readers understanding of the effective features of ARM embedded system
Platform: | Size: 16384 | Author: | Hits:

[Special EffectsMatlabppt

Description: MATLAB教程:概述,程序设计,绘图,数值计算,符号计算,图形用户界面设计,笔记本,M环境下的仿真-MATLAB Tutorial: an overview, program design, graphics, numerical computing, symbolic computation, graphical user interface design, notebook, M Simulation Environment ... ...
Platform: | Size: 195584 | Author: youxia | Hits:

[OtherDataCommunicationNetwork

Description: 数据通信网络 1 概述, OSI 7层结构 2 数据链路层,帧,差错检测 3 重传算法 4 重传算法 5 排队模型-概述和Little定理 6 M/M/1, M/M/m, 队列,等 7 排队网络 8 M/G/1队列, M/G/1 w/ 空闲 9 M/G/1 队列和保留, 优先队列 10 排队系统的稳定性 11 M/G/1队列占用率分布 12 测验 13 多路访问和Aloha 14 稳定的Aloha,树算法 15 CSMA, CSMA/CD和以太网 16 高速LANs,令牌环网,Satellite reservations 17 交换结构概述 18 高速交换调度 19 广播路由和生成树 20 最短路径路由 21 分布式路由算法,最佳路由 22 流量控制-窗口/方案 23 流量控制-基于速率的方案 24 运输层和TCP/IP 25 ATM网络 26 特别专题:光网络和无线网络-Data Communication Network An overview, OSI 7-layer structure of two data link layer, frames, error detection 3 Retransmission Retransmission Algorithm 4 Algorithm 5 queuing model- Overview and Little Theorem 6 M/M/1, M/M/m, queues, and so on 7 8 M/G/1 queue, queuing networks, M/G/1 w/free 9 M/G/1 queue, and reservations, priority queue 10, queuing system, the stability of the 11 M/G/1 queue, the distribution of the occupancy rate of 12 tests over 13 Road access and Aloha 14 stable Aloha, tree algorithm 15 CSMA, CSMA/CD and 16 high-speed Ethernet LANs, token ring network, Satellite reservations 17 switching architecture overview of 18 high-speed switch scheduling 19 broadcast routing and shortest path spanning tree 20 Route 21 Distributed routing algorithm, the best route 22 traffic control- windows/programs, 23 traffic control- rate-based program of 24 transport layer and the TCP/IP 25 ATM network of 26 Special topic: optical networking and wireless networks
Platform: | Size: 5029888 | Author: 孙琛 | Hits:

[matlabMATLAB.chinesesBook

Description: 第一篇 基本概述 第一章 基本概述 第二章 初探MATLAB 第二篇 繪圖功能 第三章 二維平面繪圖 第四章 三維立體繪圖 第五章 數值運算與其他應用面 第六章 影像顯示與讀寫 第七章 動畫製作 第八章 握把式圖形與GUI設計 第九章 GUIDE:GUI設計環境 第三篇 變數與資料結構 第十章 矩陣的處理與運算 第十一章 字元與字串 第十二章 多維陣列 第十三章 異質陣列 第十四章 結構陣列 第十五章 稀疏矩陣 第四篇 程式設計程 第十六章 MATLAB的運算元 第十七章 M檔案 第十八章 程式流程控制 第十九章 程式除錯 第二十章 檔案輸出及輸入 第二十一章 程式計時 第二十二章 程式碼與記憶體之最佳化 第二十三章 應用程式介面 第五篇 數值運算與其他應用面 第二十四章 線性代數 第二十五章 多項式的處理與分析 第二十六章 一般數學函數的處理與分析 第二十七章 內插法 第二十八章 曲線擬合與迴歸分析 第二十九章 常微分方程式 -Basic overview of first The first chapter outlines the basic Chapter II of MATLAB Second graphics Chapter III of the two-dimensional drawings Chapter IV Three-dimensional mapping Chapter V numerical computing and other applications surface Chapter VI of the video display and read-write Chapter VII of the animation Chapter VIII of the grip-style graphics and GUI Design Chapter GUIDE: GUI Design Environment Title III variables and data structures Chapter matrix processing and computing Chapter XI characters and strings Chapter XII multi-dimensional arrays Chapter XIII heterogeneous array of XIV Structure Array Chapter XV of the sparse matrix Part IV Programming Cheng Chapter XVI MATLAB computing yuan Chapter XVII M Files 18th charter-type flow control 19th charter-style debugging 20th chapter files export and import of 21st charter-type time- 22nd charter-type code and memory in the bes
Platform: | Size: 12853248 | Author: 陳煒松 | Hits:

[matlabrnnsimv2

Description: RNNSIM v.2 package contains a number of m-files for training and evaluation of the random neural network. All functions have been thoroughly tested. After downloading the separate files or the zipped file, make sure that they are stored or extracted in the directory /rnnsimv2 Below an overview of the files contained in this directory along with a brief description of what they do. The on-line help facility explains how to call the different functions. You simply write help <function-name> in the MATLAB command window. Along with the m-files in this directory you will find a manual for the simulator in PDF format (rnnsimv2.pdf). Start by printing this out and read the release notes. Two simple demonstration programs are given to illustrate how most of the functions work. -RNNSIM v.2 package contains a number of m-files for training and evaluation of the random neural network. All functions have been thoroughly tested. After downloading the separate files or the zipped file, make sure that they are stored or extracted in the directory /rnnsimv2 Below an overview of the files contained in this directory along with a brief description of what they do. The on-line help facility explains how to call the different functions. You simply write help <function-name> in the MATLAB command window. Along with the m-files in this directory you will find a manual for the simulator in PDF format (rnnsimv2.pdf). Start by printing this out and read the release notes. Two simple demonstration programs are given to illustrate how most of the functions work.
Platform: | Size: 309248 | Author: hacen | Hits:

[Communication-Mobilem_sequence

Description: 本设计是用来产生m序列的。既有关于m序列的原理性概述,又有自己编的产生m序列的函数。已通过仿真。注释详尽。-This design is used to generate m-sequences. Both the overview of the principle of m-sequences, have made themselves a function of m sequence generation. Simulation has passed. Detailed notes.
Platform: | Size: 212992 | Author: liuwei | Hits:

[Graph programMatlab.m

Description: 共振解调法诊断轴承损伤类故障的原理概述如下:当轴承某一元件表面出现局部损伤时,在受载运行过程中要撞击与之相互作用的其它元件表面,产生冲击脉冲力,由于冲击脉冲力的频带很宽,必然包含轴承外圈、传感器甚至附加的谐振器等的固有频率而激起这个测振系统的高频固有振动。根据实际情况可以选择某一高频固有振动作为研究对象,通过中心频率等于该固有频率的带通滤波器把该固有振动分离出来。然后进行包络解调,去除高频衰减振动的频率成分,得到只包含故障特征信息的低频包络信号,对这一包络信号进行频谱分析便可以容易地诊断出轴承的故障来。-The principle of resonance demodulation method in the diagnosis of bearing damage such failure overview is as follows: when the bearing surface of a local damage, in the process of loading operation to hit with other elements of the interaction of surface, impact pulse power, due to the impact pulse frequency band is very wide, inevitably contains the bearing outer ring, sensors and even additional resonator and stir up the natural frequency of the vibration system of the high frequency vibration mode.A high frequency vibration mode can be selected according to actual situation as the research object, through the center frequency is equal to the natural frequency of the bandpass filter to separate the natural vibration.Then envelope demodulation, frequency components to remove the high frequency vibration attenuation, get only includes fault feature information of low frequency envelope signal, the envelope signal spectrum analysis can be easily diagnosed bearing failure.
Platform: | Size: 4096 | Author: 黄杰 | Hits:

[OtherMATLAB-R2014a-

Description: 本书面向MATLAB 的初中级读者,在介绍MATLAB R2014a 集成环境的基础上,对MATLAB 使用中常用的知识和工具进行了详细的介绍,书中各章均提供了大量有针对性的算例,供读者实战练习。 根据内容的侧重点不同,全书分为4 部分共20 章:第1~5 章为基础部分,讲解MATLAB R2014a 概述、MATLAB 基础知识、数组与矩阵、MATLAB 编程基础及数据可视化等;第6~8 章为数学应用部分,讲解数据分析、符号数学计算和概率统计等;第9~15 章为工程应用部分,讲解偏微分方程、优化、图像处理、信号处理、小波分析等工具箱,Simulink 仿真基础及应用等;第16~20 章为知识拓展部分,讲解句柄图形对象、图形用户界面、文件读取I/O、MATLAB 编译器和外部接口应用介绍等内容。为了使用户能够更好地操作MATLAB,本书中示例的命令已记录在M 文件及其他相关文件中,用户可以将相关的目录设置为工作目录,直接使用M 文件进行操作,以便快速掌握MATLAB 的使用方法。-This book is for the middle-class readers MATLAB, MATLAB R2014a based on the introduction of the integrated environment, the use of MATLAB common knowledge and tools are described in detail in the book each chapter offers a lot of targeted studies, for Readers combat exercises. Depending on the focus of the content, the book of 20 chapters divided into 4 parts: 1 to 5 for the basic part, explain MATLAB R2014a overview, MATLAB basics, arrays and matrices, MATLAB Programming Fundamentals and data visualization 6-8 Chapter mathematical application part, explain the data analysis, symbolic math and probability and statistics 9 to 15 for the engineering part, explain the partial differential equations, optimization, image processing, signal processing, wavelet analysis toolbox, Simulink Simulation Fundamentals and applications 16 to 20 chapters expand knowledge part, explain handles graphic objects, the graphical user interface, file read I/O, MATLAB Compiler, and an external interface a
Platform: | Size: 7660544 | Author: 宋超 | Hits:

[source in ebookDesktop

Description: 《MATLAB宝典》由浅入深、循序渐进地介绍了MATLAB7.0的知识体系及操作方法。全书共分14章,内容涵盖了MATLAB7.0概述、基础知识、数值运算、数据分析、符号计算、数据的可视化、M语言程序设计、Simulink仿真系统、句柄图形、GUI、文件输入/输出、编译器和应用程序接口等。-MATLAB collection , the shallower to the deeper gradual introduction of the knowledge system and operation method of MATLAB7.0. The book is divided into 14 chapters, covering matlab7.0 overview, basic knowledge, numerical calculation, data analysis, symbolic computation, data visualization, M language program design, Simulink simulation system, handle graphics, GUI, file input/output, compilers, and application program interface.
Platform: | Size: 2662400 | Author: 童云飞 | Hits:

[DocumentsMM1_Tutorial1

Description: MM1_Tutorial Objective This laboratory is important for understanding OPNET system and user interface. The lab contains a step-by-step example that shows how to use OPNET to construct an M/M/1 queue design and analysis. Overview The task is to construct an M/M/1 queue model and observe the performance of the queuing system as the packet arrival rates, packet sizes, and service capacities change. Two classes of statistics will be measured, Queue Delay and Queue Size. A graph of the confidence interval will also be produced. This laboratory also introduces the use of:  Node Model  Probe Model  Simulation Tool  Analysis Tool(MM1 queue simulation)
Platform: | Size: 234496 | Author: 北城以北 | Hits:

[Books【Matlab】Matlab宝典

Description: 《MATLAB宝典》由浅入深、循序渐进地介绍了MATLAB7.0的知识体系及操作方法。全书共分14章,内容涵盖了MATLAB7.0概述、基础知识、数值运算、数据分析、符号计算、数据的可视化、M语言程序设计、Simulink仿真系统、句柄图形、GUI、文件输入/输出、编译器和应用程序接口等。("MATLAB treasure" introduces the knowledge system and operation methods of MATLAB7.0 in a shallow and gradual way. The book is divided into 14 chapters, covers an overview of MATLAB7.0, basic knowledge, numerical calculation, data analysis, symbolic computation, data visualization, M programming language, Simulink simulation system, handle graphics, GUI, file input / output, compiler and application programming interface.)
Platform: | Size: 29386752 | Author: bitzyh | Hits:

CodeBus www.codebus.net