輸入輸出命令
disp 顯示陣列或字串
fscanf 從檔案讀取資料(模擬於c語言scanf)
fprintf 格式化寫入(模擬於c語言printf)
%fprintf
for i=0:15
if mod(i,2)==0
fprintf('%d*',i);
endendfprintf('\n');
%輸出結果
0*2*4*6*8*10*12*14*
input 輸入
%**
x=input('please input sth:\n');
%x可以為數字
>> test
please input sth:
824>> x
x = 824
%x為矩陣
>> test
please input sth:
[1,2,3;4,5,6;7,8,9]
>> x
x = 1 2 3
4 5 6
7 8 9
;禁止螢幕列印顯示
fscanf、fprintf包括以下格式化輸入輸出
%d 整數型
%f 浮點型
%s 字串型
%e 科學計數法浮點型
MATLAB入門(MATLAB命令)
管理會話中的命令 clc 刪除命令視窗 clear 刪除記憶體中的變數 exist 檢查變數是否存在 global 宣告變數為全域性變數 help 獲取幫助資訊 1 查詢各種算術運算子 關係運算子 邏輯運算子 2 查詢名稱準確已知的命令或檔案 3 非matlab自帶.m檔案的幫助性注釋內容 look...
MATLAB入門基礎
1.常用的幫助命令 help lookfor which set get doc type edit helpin 2.幫助視窗 3.演示系統 1.matlab特點 基本計算單元是矩陣 向量,功能的擴充套件性 除了基本部分外還有專業擴充套件部分 2.matlab組成 matlab matlabcom...
matlab程式 入門
imshow uint8 xx title 重構圖 x imread flower.jpg image x colormap map title 原始影象 畫出原影象 x rgb2gray x hv rgb2hsv x 可以通過下面的程式看一幅圖的hsv三個通道 h hv 1 s hv 2 v hv...