回答済み
What is uncoded MIMO channel?
As I understand it, uncoded probably points to the source data that does have have any channel coding associated with it. An exa...

4年以上 前 | 0

| 採用済み

回答済み
Concatenation of interpolation and decimation doesn't work
Decimation is the process of downsampling, followed by filtering. The MATLAB function, by default, filters the input sequence us...

4年以上 前 | 0

回答済み
cannot access national instruments hardware
A few troubleshooting tips are documented here.Try a few of the steps provided to see if it works out. You can also try to reins...

4年以上 前 | 0

回答済み
Why MATLAB on Macbook Pro behaves weird while working with BLE devices?
I have heard that these issues are known, and the concerned parties may be investigating further.

4年以上 前 | 0

回答済み
How can I get real-time waveforms and data from connected oscilloscope?
A good resource to start would be the overview page for the Instrument Control toolbox. There are a few code examples to get sta...

4年以上 前 | 0

回答済み
Fit Gaussian mixture model with weighted observations
The function fitgmdist fits a distribution to a given data set. This data set generally has points belonging to the same class t...

4年以上 前 | 0

回答済み
Using an Arduino IR camera to plot a heatmap
There are multiple ways to do this. If you are saving data in a text file and then want to load it into MATLAB, you can use fsca...

4年以上 前 | 0

回答済み
how implement FFT to ringtone/music
As Walter mentioned, you can use the fft function to carry out the Fast Fourier Transform operation using one the of the example...

4年以上 前 | 0

回答済み
无法下载第三方软件: Windows USB drivers for PlutoSDR 这是以下项所需要的: Communications Toolbox Support Package for Analog Devices ADALM-Pluto Radio
Try to reinstall support package keeping the following steps in mind: Go to Add On manager and uninstall the support package, ...

4年以上 前 | 0

回答済み
How can i transmit image with OFDM and Receive the same image with OFDM with Pluto ?
This example elaborates how to use Pluto SDR to transmit and receive images using 802.11a standard. This standard uses OFDM for ...

4年以上 前 | 0

| 採用済み

回答済み
Load a structure in a mat file
A similar issue has been addressed here. The issue and limitation are documented and elaborated upon, and a workaround is also p...

4年以上 前 | 0

回答済み
Loss stops calculating with custom layer (weighted cross entropy function)
Whenever the loss value is either “NaN” or “Inf”, the value is not plotted on the curve. On similar lines, the accuracy is near ...

4年以上 前 | 0

| 採用済み

回答済み
Classifying ECG into separate segments
As I understand it, each type of wave has a specific frequency characteristic. Based on this, bandpass filters can be designed t...

4年以上 前 | 0

回答済み
Time-frequency spectral coherence analysis
As has already been suggested by Daniel, the mscohere function can be used. If you are using a custom window, generate the vecto...

4年以上 前 | 0

回答済み
How do I plot a constant value over multiple different intervals ?
To plot an overlapping line onto the figure, an x-axis vector would need to be specified and provided to the “plot” function alo...

4年以上 前 | 0

回答済み
Help with echo effect to audio signal code?
The Audio Toolbox has an Echo object that could cater to your needs. Create the object using the following code: echoObject = a...

4年以上 前 | 0

回答済み
designAuditoryFilterBank - Error "Undefined function or variable"
The designAuditoryFilterBank function is available from the MATLAB R2019B release version. If you are using an older version, th...

4年以上 前 | 0

| 採用済み

回答済み
Frequency spectrum of a sound signal
Using a test sound file of my own, I was able to generate the plots attached. The function “audioread” works if the suffix of th...

4年以上 前 | 0

回答済み
BER depends on TotalFrame count in QPSK Transmitter and Receiver example
The variability is due to timing synchronization and carrier frequency offset (CFO). Timing synchronization becomes much difficu...

4年以上 前 | 1

回答済み
Collection of all the signals by Phased.collector
Yes, the “collector” can be used for all the signals from angles by specifying the second input argument as shown as shown here....

4年以上 前 | 0

| 採用済み

回答済み
Remove unwanted narrowband interference
Increasing the order of the Butterworth filter could help improve the response. Alternatively, the buttord function can be used ...

4年以上 前 | 0

回答済み
Plotting a matrix / Plotear una matriz
I am assuming you are trying to have multiple axes on a single figure window, where a few of the subplots will be used to plot m...

4年以上 前 | 1

| 採用済み

回答済み
append cell array #2 to cell array #1 to get a final cell array of cells
The operations carried out by either: C = [A B]; C = horzcat(A,B); C = cat(2,A,B); Should work for your requirement. There i...

4年以上 前 | 0

| 採用済み

回答済み
Normalize/scale in range
The code below can help perform matrix normalization where you have to specify the appropriate -1, 0 and 1 values in variables "...

4年以上 前 | 0

| 採用済み

回答済み
How to set the FIR filter specifications?
You can use the Filter Designer app to get started on the Filter design. You can select the FIR filter option, specify order or ...

4年以上 前 | 0

| 採用済み

回答済み
Matlab and USB2.0 Protocol data aquisition
To read data from a USB, you can use the serial port object to initialize communication between device and MATLAB, followed by u...

4年以上 前 | 0

回答済み
Help needed for Plotting Confusion Matrix as given in the sample image
I have brought this issue to the notice of our developers. They will investigate the matter further. For the time being, you co...

4年以上 前 | 0

| 採用済み

回答済み
単相誘導機の特性曲線フィッティング
You can use the Curve Fitting app documentation to get started. Hope it helps!

4年以上 前 | 0

| 採用済み

回答済み
how can i filter my signal if the fft looks like this?
For plotting the FFT output, the x-axis must be defined in a vector. Ideally this vector is defined as follows: x = (0: 1/nFFT ...

4年以上 前 | 0

| 採用済み

回答済み
QPSK modulator and demodulator
To perform QPSK modulation and demodulation, you can use the “pskmod” and “pskdemod” functions by setting the order of modulatio...

4年以上 前 | 0

さらに読み込む