Respondida
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...

más de 4 años hace | 0

| aceptada

Respondida
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...

más de 4 años hace | 0

Respondida
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...

más de 4 años hace | 0

Respondida
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.

más de 4 años hace | 0

Respondida
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...

más de 4 años hace | 0

Respondida
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...

más de 4 años hace | 0

Respondida
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...

más de 4 años hace | 0

Respondida
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...

más de 4 años hace | 0

Respondida
无法下载第三方软件: 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, ...

más de 4 años hace | 0

Respondida
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 ...

más de 4 años hace | 0

| aceptada

Respondida
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...

más de 4 años hace | 0

Respondida
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 ...

más de 4 años hace | 0

| aceptada

Respondida
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...

más de 4 años hace | 0

Respondida
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...

más de 4 años hace | 0

Respondida
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...

más de 4 años hace | 0

Respondida
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...

más de 4 años hace | 0

Respondida
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...

más de 4 años hace | 0

| aceptada

Respondida
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...

más de 4 años hace | 0

Respondida
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...

más de 4 años hace | 1

Respondida
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....

más de 4 años hace | 0

| aceptada

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

más de 4 años hace | 0

Respondida
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...

más de 4 años hace | 1

| aceptada

Respondida
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...

más de 4 años hace | 0

| aceptada

Respondida
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 "...

más de 4 años hace | 0

| aceptada

Respondida
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 ...

más de 4 años hace | 0

| aceptada

Respondida
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...

más de 4 años hace | 0

Respondida
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...

más de 4 años hace | 0

| aceptada

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

más de 4 años hace | 0

| aceptada

Respondida
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 ...

más de 4 años hace | 0

| aceptada

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

más de 4 años hace | 0

Cargar más