freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

matlab入門第三章matlab程序設(shè)計(jì)基礎(chǔ)-展示頁

2025-01-25 05:46本頁面
  

【正文】 content) 編寫新的文件或修改已有文件;(3) 保存文件:(save file) 文件運(yùn)行前必須完成保存操作,與一般的文件編輯保存操作相同;(4) 運(yùn)行文件:(running file) 在命令窗口輸入文件名即可運(yùn)行。1. M文件編程:(Mfile program)可用普通文本編輯器編制 MATLAB文件,文件由純ASCⅡ字符組成,稱為M文件。(5)剪貼板的數(shù)據(jù):(Clipboard data) 需要導(dǎo)入已存放在系統(tǒng)剪貼板中的數(shù)據(jù),點(diǎn)數(shù)據(jù)輸入向?qū)Т翱谥械腃lipboard選項(xiàng),Next進(jìn)入下一頁按Finish 完成數(shù)據(jù)導(dǎo)入(或按Cancel終止數(shù)據(jù)導(dǎo)入)。(3)圖象數(shù)據(jù)文件:(Graphics data file) FileImport data選擇文件名或輸入圖形數(shù)據(jù)文件名打開Import Wizard 點(diǎn)擊show image(可在圖象上拖曳放大區(qū)域)按Finish 完成數(shù)據(jù)導(dǎo)入(或按Cancel終止數(shù)據(jù)導(dǎo)入)。Next: 顯示數(shù)據(jù)輸入向?qū)Т翱诘诙?。窗口?nèi)容:左側(cè),變量名稱、大小、類型。在 Import 對話框中輸入需要導(dǎo)入的數(shù)據(jù)文件名后出現(xiàn)Import Wizard窗口,可預(yù)觀測將要導(dǎo)入的數(shù)據(jù)、顯示圖象、播放聲音等。(4).聲音文件: (Sound file) ,用waveread 和 wavwrite命令進(jìn)行讀入和存取。 可以用save和load命令進(jìn)行讀入和存取。.mat文件可以由MATLAB提供的save和load命令直接存取。2. 數(shù)據(jù)文件(Data file)MATLAB支持的各種數(shù)據(jù)文件(Readable file formats of MATLAB)的主要類型及其存取方法如下述: (1)二進(jìn)制數(shù)據(jù)文件:(Binary date file) 。 *Java類(Java class):由JavaAPI或第三方定義的類函數(shù)。第三章 MATLAB程序設(shè)計(jì)基礎(chǔ)chapter 3: Foundation of MATLAB program design一、 數(shù)據(jù)及數(shù)據(jù)文件(Data and Data file)1. 數(shù)據(jù)類型:(Data mode) 為適應(yīng)各種不同計(jì)算和處理的需求,MATLAB提供了多種數(shù)據(jù)類型,主要有:*數(shù)值數(shù)組(Numeric array)—包括整形(int8,uint8,int16,uint16,int32,uint32)單精度(signal) 雙精度(duble)(MATLAB最常用的變量類型)稀疏數(shù)組(sparce)按維數(shù)分有一維、二維和多維數(shù)組Int UintUnsigned Integer data 無符號整形數(shù)組*字符串?dāng)?shù)組(Character array):由字符串組成的數(shù)組*單元數(shù)組(Cell array):用不同類型和大小的數(shù)組組成的數(shù)組,同一個(gè)元胞數(shù)組中各元胞的內(nèi)容可以不同。*結(jié)構(gòu)數(shù)組(Structure array):與單元數(shù)組類似,但其數(shù)據(jù)的組織能力更強(qiáng),更富于變化。 *函數(shù)句柄(Function handle):可以在一個(gè)參數(shù)列表中傳遞,并使用feval運(yùn)行.在工作空間瀏覽器中不同的數(shù)據(jù)類型有著不同的圖標(biāo)標(biāo)識。是標(biāo)準(zhǔn)的MATLAB數(shù)據(jù)文件,以二進(jìn)制編碼形式存儲。(2)ASCⅡ碼數(shù)據(jù)文件:(ASCⅡ code data file), .dat等, 可以是在MATLAB環(huán)境下存儲的,也可能是其他軟件的計(jì)算結(jié)果,可以被MATLAB調(diào)用,也可以用文本編輯器打開進(jìn)行觀察與修改。(3).圖象文件:(Graphics file) , .jpg .tif等,用于圖形圖象處理,可以用imread和imwrite命令進(jìn)行讀入和存取。Readable file formats. Data formats Command ReturnsMAT MATLAB workspace load Variables in file.CSV Comma separated numbers csvread Double array.DAT Formatted text importdata Double array.DLM Delimited text dlmread Double array.TAB Tab separated text dlmread Double array.Spreadsheet formatsXLS Excel worksheet xlsread Double array and cell array.WK1 Lotus 123 worksheet wk1read Double array and cell array.Scientific data formatsCDF Common Data Format cdfread Cell array of CDF recordsFITS Flexible Image Transport System fitsread Primary or extension table dataHDF Hierarchical Data Format hdfread HDF or HDFEOS data setMovie formatsAVI Movie aviread MATLAB movie.Image formatsTIFF TIFF image imread Truecolor, grayscale or indexed image(s).PNG PNG image imread Truecolor, grayscale or indexed image.HDF HDF image imread Truecolor or indexed image(s).BMP BMP image imread Truecolor or indexed image.JPEG JPEG image imread Truecolor or grayscale image.GIF GIF image imread Indexed image.PCX PCX image imread Indexed image.XWD XWD image imread Indexed image.CUR Cursor image imread Indexed image.ICO Icon image imread Indexed image.RAS Sun raster image imread Truecolor or indexed.PBM PBM image
點(diǎn)擊復(fù)制文檔內(nèi)容
環(huán)評公示相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1