回答済み
how to use ha.coefficients for a filter?
It's an adaptive filter so the coefficients changes at every step. The Coefficients only contains the initial coefficients. In a...

11年以上 前 | 1

回答済み
Time-domain data to Frequency-domain data Questions
FFT is just an operation on the data, whether it's time domain or frequency domain is an interpretation of the data. So what you...

11年以上 前 | 0

回答済み
Matched filter in function matlab simulink
Here is an example: x = ones(10,1); mf = phased.MatchedFilter('CoefficientsSource','Input port'); y = step(mf,x,conj(...

11年以上 前 | 0

回答済み
How to look inside class based functions under Phased Array ToolBox?
You can type edit phased.TimeDelayBeamformer to see the source code. The code is a System object, but if you are only in...

11年以上 前 | 2

回答済み
Doubt about xcorr function
You may want to use the 'unbiased' option in xcorr so the normalization is on the number of points used to compute the correlati...

11年以上 前 | 1

| 採用済み

回答済み
C++ Code Generation Fails
What release are you using? The support varies from release to release. In the latest release, all these functions are supported...

11年以上 前 | 1

回答済み
Bandwidth in Wideband Collector
The bandwidth in this case is derived from sample rate. When you specify a carrier frequency, fc, and a sample rate, fs, the ban...

11年以上 前 | 3

| 採用済み

回答済み
How to compare a matrix rows such as:
B = sort(A,2); A(ismember(B(:,3:end),1:8,'rows'),:)

11年以上 前 | 0

回答済み
Help with H(z) response function
conv(([2/3 2/5 4/7]+[4/3 8/5 3/7]),[3 2 4])

11年以上 前 | 0

回答済み
Filters: Differences between fvtool and bode
I'm not sure how you are using bode, but from your transfer function, you are working with analog filter while fvtool is for dig...

11年以上 前 | 2

| 採用済み

回答済み
pattern data out of scanned phased antenna array, not just the plot
What version of Phased Array System Toolbox do you have? If you are using R2014b, then you can use |directivity| method to retri...

11年以上 前 | 0

| 採用済み

回答済み
how can i use a varying bandwidth in phased.FMCWWaveform function
You can modify the SweepInterval property in FMCWWaveform, if you set it to 'Positive', it sweeps from 0 to BW, where BW is the ...

11年以上 前 | 0

| 採用済み

回答済み
No time differencies in modeling phased.Collector
Are you expecting to see 0s in front of certain channels when you talk about time difference? |phased.Collector| doesn't do that...

11年以上 前 | 0

回答済み
Undefined function 'physconst' for input arguments of type 'char'. error
|physconst| requires Phased Array System Toolbox. You can do a ver in command line to check if you have license for that...

11年以上 前 | 0

| 採用済み

回答済み
EasyGUI not working for version R2014b
Maybe you can put a breakpoint there and do >> set(obj.UiGuiArea) to see what can be set. It could just be a case sensiti...

11年以上 前 | 1

| 採用済み

回答済み
Modelling customAntennaElement and customMicrophoneElement
If you are not varying the spatial pattern, then null location, relative sidelobe level and directivity will stay the same since...

11年以上 前 | 0

| 採用済み

回答済み
I am unable to view the low frequency components of a signal that contains low (of the order of 20 KHz) and very high (of the order of THz) apart intermediate frequencies.
Without looking at your concrete steps, it's hard to judge. I'm also a bit confused when you say the signal from 10kHz onward is...

11年以上 前 | 0

回答済み
Write a quadratic equation function
Isn't this just depending on the value of b^2-4*a*c, something like val = b^2-4*a*c; if val > 0 % two roots else...

11年以上 前 | 0

| 採用済み

回答済み
Sound source localization using Phased Array System Toolbox
Most DOA estimator shipped in Phased Array System Toolbox is indeed narrow band so they are probably not the best tool for wideb...

11年以上 前 | 0

| 採用済み

回答済み
Help with fir1 needed
Did you compute wnm from some other functions? This looks like a round off numeric issue. A simple fix could be adding the follo...

11年以上 前 | 0

回答済み
i was trying this code but getting error for Y=fft(x.*hamming(length(x))); as .* operator matrix dimensions must agree.pls help me to resolve.
My guess is your |x| is a row vector while |hamming(length(x))| gives a column vector. You can add x = x(:); after seco...

11年以上 前 | 1

| 採用済み

回答済み
Hi please help me for following
This requires Phased Array System Toolbox shipped with R2014b, you may want to type ver in your command window to see if...

11年以上 前 | 0

回答済み
How should I calculate power spectral density of signal with too high sampling rate
I would recommend first design a filter, to filter at 100Hz, then down sample/resample, and then do PSD calculation. Actually I ...

12年弱 前 | 0

| 採用済み

回答済み
How Array gain is calculated in Phased array?
The ArrayGain in Phased Array System Toolbox calculates the SNR improvement due to the array. The computation is outlined in the...

12年弱 前 | 0

| 採用済み

回答済み
error with using filter
|dsp.BiquadFilter| is a System object, so its main method is |step()|. Try a = step(Hd,a)

12年弱 前 | 0

| 採用済み

回答済み
How to implement multipath fading channels using Phased Array System toolbox?
In theory you should be able to cascade the two channels together. The FreeSpace channel in Phased Array System Toolbox basicall...

12年弱 前 | 0

回答済み
How to design a narrow bandpass filter to pass frequencies between 90 and 110 Hz?
You may want to use |cheb2ord| to estimate the order of the filter first, that function will also return the |ws| needed in |che...

12年弱 前 | 0

回答済み
implementing multistage multirate filters
Here is an example you may find useful http://www.mathworks.com/help/dsp/ug/example-case-for-multiratemultistage-filters.html...

12年弱 前 | 0

回答済み
Converting indices to time
This means your sampling rate is 200 Hz, so you can construct your time vector as fs = 200; t = (0:numel(x)-1)/fs; th...

12年弱 前 | 1

| 採用済み

回答済み
How to plot this signal?
y = filter([a b c],1,x); plot(y)

12年弱 前 | 1

| 採用済み

さらに読み込む