1.利用matlab在矩陣裡找每一列的最小值時用min(a)函式
利用matlab在矩陣裡找每一行的最小值時用min(a,,2)函式
2.矩陣裡兩個元素互換可以用 binminheap([1 3])=binminheap([3 1])這種表達方式,即將矩陣的第三個元素和第乙個元 素互換成功
3.比較兩個數的較小值的時候:
[minkey,minkeyidx] = min([binminheap(2*n).key, binminheap(2*n+1).key]);
minkey等於較小的值;
如果binminheap(2*n).key較小,則
minkeyidx=1
如果binminheap(2*n+1).key較小,則minkeyidx=2
4.imagesc(a) 將矩陣a中的元素數值按大小轉化為不同顏色
set(gca,'dataaspectratio',[1 1 1])將各座標軸比例設為1:1:1
Matlab函式備忘2
matlab code sort a 預設公升序,列優先 sort a,descend 降序 sort a,1 對每一列中的元素公升序排列 sort a,2 對每一行中的元素公升序排列 a sort,idx sort a a sort表示排序後的結果,idx表示a sort元素在a中的位置索引。a ...
一些用到的matlab函式備忘錄
注釋 cirfilt執行三個操作的級聯 a.以整數sps 插入零 的係數對矩陣xin中的輸入資料進行上取樣 b.使用cconv用向量或矩陣編號中給出的脈衝響應序列過濾上取樣的訊號資料。假設訊號正在迴圈 c.恢復過濾器延遲。simdmtxstage在tx端模擬方向調製過程 y simdmtxstage...
Matlab的ode45使用備忘
function test ode45 calculate the motion in 20 secs tspan 0 20 x 4,v 0 when t 0x0 4 0 t,x ode45 hamofun,tspan,x0 plot t,x hold on t,x ode45 dampfun,ts...