計算で 50 の個々の振幅のそれぞれを使用できるように、連続Gaussian
パルスを分割する必要があります。50 discrete parts
これが私が試したことです:
% Gauss pulse discretisation
tg = 20*10^(-3); % pulse duration [sec]
B1 = 1; % max amplitude [muT]
t = -tg/2:tg/50:tg/2; % sampling times
sd = 0.25; % pulse standard deviation
% pulse shape
p = B1*exp(-((t-tg/2).^2)/(2*sd.^2));
plot(t,p);
ただし、プロットは20ms in duration
!のガウス パルスのようには見えません。sampling time
の定義方法に問題はありますか? たとえば、が次のsampling time
ように定義されている場合
t = -1:tg/50:1
パルスはガウスのように見えますが、5001 の部分に分解されます。誰かが私を正しい方向に向けてもらえますか?