免费中文字幕午夜理论模特,久久午夜福利精品,国产精品久久久久中文,久久精品视频免费观看12

  • <object id="ysikk"><strike id="ysikk"></strike></object>
    <menu id="ysikk"><abbr id="ysikk"></abbr></menu>
    <ul id="ysikk"></ul>
    <tbody id="ysikk"></tbody>
  • <menu id="ysikk"><noscript id="ysikk"></noscript></menu>

    課件009logo 課件009網(wǎng)站
    首 頁(yè) 課 件 試 卷 教 案 畢業(yè)論文 圖書(shū)軟件 職教研究 期刊推介 會(huì)員中心 信息發(fā)布
    首頁(yè) >> 軟件圖書(shū) >> 計(jì)算機(jī)軟件圖書(shū) >> MATLAB Programming and its Applications
    MATLAB Programming and its Applications
    資料類別
       計(jì)算機(jī)軟件圖書(shū)
    課程(專業(yè))
      MATLAB
    關(guān)鍵詞
      MATLAB|Applications
    適用年級(jí)
      大學(xué)
    身份要求
      普通會(huì)員
    金 幣
      0  (金幣如何獲得?

    文件格式

      Word
    文件大小
      4422K
    發(fā)布時(shí)間
      2011-12-20 10:19:00
    預(yù)覽文件
      無(wú)
    下載次數(shù)
      1
    發(fā)布人   lcw
     內(nèi)容簡(jiǎn)介:     MATLAB Programming and its Applications
       Contents
       CHAPTER 1 Introduction to MATLAB 1
       1.1 What is MATLAB? 1
       1.2 The Advantages of MATLAB 1
       1.3 Disadvantages of MATLAB 3
       1.4 The MATLAB Environment 3
       1.4.1 The MATLAB Desktop 3
       1.4.2 The Command Window 4
       1.4.3 The Command History Window 5
       1.4.4 The Edit/Debug Window 6
       1.4.5 Figure Windows 7
       1.4.6 The MATLAB Workspace 8
       1.4.7 The Workspace Browser 9
       1.4.8 Getting Help 10
       1.4.9 A Few important Commands 12
       1.4.10 The MATLAB Search Path 13
       1.5 Using MATLAB as a Scratchpad 14
       1.5 Summary 16
       1.5.1 MATLAB Summary 17
       1.6 Exercises 17
       CHAPTER 2 MATLAB Basics 19
       2.1 Variables and Arrays 19
       2.2 Initializing Variables in MATLAB 22
       2.2.1 Initializing Variables in Assignment Statements 22
       2.2.2 Initializing with Shortcut Expressions 25
       2.2.3 Initializing with Built-in Functions 26
       2.2.4 Initializing Variables with Keyboard Input 27
       2.3 Multidimensional Arrays 29
       2.3.1 Storing Multibimensiond Arrays in Memory 30
       2.3.2 Accessing Multidimensional Arrays with a Single Subscript 31
       2.4 Subarrays 32
       2.4.1 The end Function 33
       2.4.2 Using Subarrays on the Left-Hand Side of an Assignment Statement 33
       2.4.3 Assigning a Scalar to a Subarray 33
       2.5 Special Values 33
       2.6 Displaying Output Data 33
       2.6.1 Changing the Default Format 33
       2.6.2 The diap Function 33
       2.6.3 Formatted Output with the fprintf Function 33
       2.7 Data Files 33
       2.8 Scalar and Array Operations 33
       2.8.1 Scalar Operations 33
       2.8.2 Array and Matrix Operations 33
       2.9 Hierarchy of Operations 33
       2.10 Built-in MATLAB Functions 33
       2.10.1 Optional Results 33
       2.10.2 Using MATLAB Functions with Array Inputs 33
       2.10.3 Common MATLAB Functions 33
       2.11 Introduction to Plotting 33
       2.11.1 Using Simple xy Plots 33
       2.11.2 Printing a Plot 33
       2.11.3 Multiple Plots 33
       2.11.4 Line Color, Line Style, Marker Style, and Legends 33
       2.11.5 Logarithmic Scales 33
       2.12 Examples 33
       2.13 Debugging MATLAB Programs 33
       2.14 Summary 33
       2.14.1 Summary of Good Programming Practice 33
       2.14.2 MATLAB Summary 33
       2.15 Exercises 33
       CHAPTER 3 Branching Statements and Program Design 33
       3.1 Introduction to Top-Down Design Techniques 33
       3.2 Use of Pseudocode 33
       3.3 Relational and Logical Operators 33
       3.3.1 Relational Operators 33
       3.3.2 A Caution about the = = and = Operators 33
       3.3.3 Logic Operators 33
       3.3.4 Logical Functions 33
       3.4 Branches 33
       3.4.1 The if Construct 33
       3.4.2 Examples Using if Constructs 33
       3.4.3 Notes Concerning the Use of if Constructs 33
       3.4.4 The switch Construct 33
       3.4.5 The try/catch Construct 33
       3.5 Additional Plotting Features 33
       3.5.1 Controlling x- and y-axis Platting Limits 33
       3.5.2 Plotting Multiple Plots on the Same Axes 33
       3.5.3 Creating Multiple Figures 33
       3.5.4 Subplots 33
       3.5.5 Enhanced Control of Plotted Lines 33
       3.5.6 Enhanced Control of Text Strings 33
       3.5.7 Polar Plots 33
       3.6 More on Debugging MATLAB Programs 33
       3.7 Summary 33
       3.7.1 Summary of Good Programming Practice 33
       3.7.2 MATLAB Summary 33
       3.8 Exercises 33
       CHAPTER 4 Loops 33
       4.1 The while Loop 33
       4.2 The for Loop 33
       4.2.1 Details of Operation 33
       4.2.2 The break and continue Statements 33
       4.2.3 Nesting Loops 33
       4.3 Logical Arrays and Vectorization 33
       4.3.1 The Significance of Logical Arrays 33
       4.3.2 Creating the Equivalent of if/else Constructs with Logical Arrays 33
       4.4 Additional Examples 33
       4.5 Summary 33
       4.5.1 Summary of Good Programming Practice 33
       4.5.2 MATLAB Summary 33
       4.6 Exercises 33
       CHAPTER 5 User-Defined Functions 33
       5.1 Introduction to MATLAB Functions 33
       5.2 Variable Passing in MATLAB: The Pass-By-Value Scheme 33
       5.3 Optional Arguments 33
       5.4 Sharing Data Using Global Memory 33
       5.5 Preserving Data Between Calls to a Function 33
       5.6 Function Functions 33
       5.7 Subfunctions and Private Functions 33
       5.8 Summary 33
       5.8.1 Summary of Good Programming Practice 33
       5.8.2 MATLAB Summary 33
       5.9 Exercises 33

     相關(guān)說(shuō)明:
      1. 如您下載的資料不止一份,建議您注冊(cè)成為本站會(huì)員。會(huì)員請(qǐng)登錄后下載。
      2. 會(huì)員購(gòu)買(mǎi)金幣50元以下,0.7元/個(gè),50元以上,0.5元/個(gè)。具體請(qǐng)看:下載與付款。
      3. 會(huì)員48小時(shí)內(nèi)下載同一文件,不重復(fù)扣金幣。
      4. 下載后請(qǐng)用WinRAR WinZIP解壓縮后使用。
      5. 如仍有其他下載問(wèn)題,請(qǐng)看常見(jiàn)問(wèn)題解答。

     下載地址:

       

    相關(guān)軟件圖書(shū)
    1 MATLAB 程序設(shè)計(jì)入門(mén)電子書(shū)
    2 MATLAB 編程電子書(shū)
    3 DSP程序開(kāi)發(fā)MATLAB調(diào)試及直
    4 MATLAB基礎(chǔ)及其應(yīng)用教程
    5 MATLAB6.5電子書(shū)
    6 西安交通大學(xué)精通MATLAB電子書(shū)
    7 MATLAB6.5輔助優(yōu)化計(jì)算與設(shè)
    8 控制系統(tǒng)的模擬試驗(yàn)與MATLAB仿
    9 MATLAB命令大全電子書(shū)
    10 matlab教程電子書(shū)
    11 MATLAB揭秘電子書(shū)
    12 MATLAB6.0數(shù)學(xué)手冊(cè)
    13 MATLAB工具箱函數(shù)匯總
    14 Matlab在27種問(wèn)題中的應(yīng)用
    15 MATLAB教程
    推薦軟件圖書(shū)
    1 搜索引擎——原理、技術(shù)與系統(tǒng)電子書(shū)
    2 c語(yǔ)言電子書(shū)
    3 現(xiàn)代軟件工程電子書(shū),共177頁(yè)
    4 一人一句電腦秘笈合集(第一版)
    5 Nginx 應(yīng)用技術(shù)指南總結(jié) V1
    6 壓縮軟件:winrar-x64-5
    7 AvaTools_v1.0軟件
    8 電腦知識(shí)10萬(wàn)個(gè)為什么
    9 IT人的學(xué)習(xí)方法論
    10 54dev-blog博客系統(tǒng) v0
    11 C# 語(yǔ)法全解
    12 圖像調(diào)節(jié)

    網(wǎng)友評(píng)論(點(diǎn)擊發(fā)表評(píng)論
    序號(hào)評(píng)論人評(píng)論內(nèi)容時(shí)間


    設(shè)為首頁(yè)  加入收藏  下載與付款  上傳課件  資料征集  論壇與信息發(fā)布  期刊雜志推介  免責(zé)聲明  常見(jiàn)問(wèn)題   分類說(shuō)明  聯(lián)系本站  會(huì)員登錄
    課件009教育資源網(wǎng) 版權(quán)所有