- 1
- 0
- 约1.81千字
- 约 7页
- 2017-11-13 发布于浙江
- 举报
§4.1 M file – Scripts and Functions
Main file forms in MATLAB
• M文件(filename.m)
• M文件(filename.m)
two forms:Script file Function file
• MAT文件(filename.mat)
• MAT文件(filename.mat)
MAT-files, the data file format MATLAB uses for saving data
to your disk, provide a convenient mechanism for moving
MATLAB data between platforms and for importing and
exporting data to stand-alone MATLAB applications.
•
•
1. Script file
A script file is an external file that contains a
sequence of MATLAB statements. By typing the
filename, you can obtain subsequent MATLAB input
from the file. Script files have a filename extension
of .m and are often called M-files.
% commets
end
.m
;
pause
• % example421.m
• % plot a sine wave
• t=1:0.1:2*pi;
• y=sin(t);
• plot(t,y)
• title(‘sin wave’)
• save example421.m
2.Function file
Matlab include a lot of standard functions.
You add new functions to the MATLAB
vocabulary by expressing them in terms of existing
functions. The existing commands and functions that
compose the new function reside in a text file called a
M-file.
§4.2 Data input and output
Menu in command window:file -》import data…。
通过与其它软件工具的接口输入数据
Load workspace variables (ASCII) from disk:
enter (rows); space (datas) 。
§4.3 Flow Control
Ⅰ.Repeat statements
The general form:
for . . .end , while. . . . end
Ⅱ. Case transfer
Two general forms of the transfer statement are:
if . . . .end
switch. . . case . . . end
您可能关注的文档
- 《电力电子技术(第5版)》王兆安-第8章 软开关技术.ppt
- 《电力电子技术(第5版)》王兆安-第10章 电力电子技术的应用.ppt
- 《房屋建筑学》建筑设计说明参考.doc
- 《工程估价》第一、二章.ppt
- 《工程估价》下载的工程估价课件.ppt
- 《工程估价》工程造价工作诀窍.docx
- 《工程监理》8建设工程监理规划性文件.ppt
- 《工程监理》3.3建设工程投资控制.ppt
- 《工程监理》工程监理-3.1~3.2.ppt
- 《工程结构》课件-工程结构思考题与习题.doc
- 广东省广州省实验中学教育集团2025-2026学年八年级上学期期中考试物理试题(解析版).docx
- 广东省广州大学附属中学2025-2026学年八年级上学期奥班期中物理试题(解析版).docx
- 广东省广州市第八十六中学2025-2026学年八年级上学期期中物理试题(含答案).docx
- 广东省广州市第八十九中学2025-2026学年八年级上学期期中考试物理试题(解析版).docx
- 广东省广州市第二中学2025-2026学年八年级上学期期中考试物理试题(含答案).docx
- 广东省广州市第八十六中学2025-2026学年八年级上学期期中物理试题(解析版).docx
- 广东省广州市第八十九中学2025-2026学年八年级上学期期中考试物理试题(含答案).docx
- 广东省广州市第二中学2025-2026学年八年级上学期期中考试物理试题(解析版).docx
- 2026《中国人寿上海分公司营销员培训体系优化研究》18000字.docx
- 《生物探究性实验教学》中小学教师资格模拟试题.docx
原创力文档

文档评论(0)