matlab size指令 在 大象中醫 Youtube 的精選貼文
matlab size指令 在 大象中醫 Youtube 的最佳解答
matlab size指令 在 索引矩陣和陣列| 他山教程,只選擇最優質的自學材料 的推薦與評價
MATLAB 允許多種方法來索引(訪問)矩陣和陣列的元素: ... colIdx = [3;2;1]; >> rowIdx = 1:length(colIdx); >> idx = sub2ind(size(M), rowIdx, ... ... <看更多>
matlab size指令 在 Re: [問題] 關於matlab 的這個指令 的推薦與評價
※ 引述《jackycc (機奇)》之銘言:
: PQ=paddedsize(size(f));
: 關於這個指令 我在網頁上 和書上都有看到
: 可是打再 matlab上卻說沒這指令
: 請問這指令到底可不可以用呢?
這個要自己加上去...
把下面這串存成paddedsize.m 吧
變成副程式來用
%-----%
function PQ = paddedsize(AB, CD, PARAM)
%PADDEDSIZE Computes padded sizes useful for FFT-based filtering.
% PQ = PADDEDSIZE(AB), where AB is a two-element size vector,
% computes the two-element size vector PQ = 2*AB.
%
% PQ = PADDEDSIZE(AB, 'PWR2') computes the vector PQ such that
% PQ(1) = PQ(2) = 2^nextpow2(2*m), where m is MAX(AB).
%
% PQ = PADDEDSIZE(AB, CD), where AB and CD are two-element size
% vectors, computes the two-element size vector PQ. The elements
% of PQ are the smallest even integers greater than or equal to
% AB + CD -1.
%
% PQ = PADDEDSIZE(AB, CD, 'PWR2') computes the vector PQ such that
% PQ(1) = PQ(2) = 2^nextpow2(2*m), where m is MAX([AB CD]).
if nargin == 1
PQ = 2*AB;
elseif nargin == 2 & ~ischar(CD)
PQ = AB + CD - 1;
PQ = 2 * ceil(PQ / 2);
elseif nargin == 2
m = max(AB); % Maximum dimension.
% Find power-of-2 at least twice m.
P = 2^nextpow2(2*m);
PQ = [P, P];
elseif nargin == 3
m = max([AB CD]); %Maximum dimension.
P = 2^nextpow2(2*m);
PQ = [P, P];
else
error('Wrong number of inputs.')
end
%---%
--
︿●﹁,
δ ⊕ 拔辣一顆外送唷
/╯
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 140.116.127.32
... <看更多>