Answered
Create a shape file on MATLAB to use it on ARCGIS
Hi, I think it is not because of the shapefile generated in MATLAB but may be because there is at least one item that is suppo...

6 years ago | 0

Answered
need to create a popup drop down list in one of the columns in the tabel in gui which increaes in row size which every event .. an event is a mouse click
Hi, It would be helpful to solve the issue if you share your code completely and elaborate on your issue.

6 years ago | 0

| accepted

Answered
train NLARX line per line
Hi, There is a similar question asked in our forum, you can refer to the following link. https://www.mathworks.com/matlabcent...

6 years ago | 0

Answered
In the ADSBSimulinkExample when I connected it to RTL-SDR Receiver I got the following error: dimension mismatch
Hi,  I guess, there is an error in helperAdsbNL.m file. You can dive into the cause of this error by debugging through the cod...

6 years ago | 0

Answered
Is there a statistically significant difference between these time series?
Hi,  You can refer to the following example to help you get familiar with using Timeseries object along with features from Sta...

6 years ago | 0

Answered
Figure window only plays in the background
Hi, I reproduced the scenario which you have mentioned in MATLAB 2018a and found out that it isn’t the same for me. I suggest ...

6 years ago | 0

Answered
What replaced the Signal Blocks toolbox?
Hi, You are right Signal Blocks is product for “DSP System Toolbox” now.

6 years ago | 0

| accepted

Answered
Turn single click into triple click
Hi, I suggest adding ‘Cell Selection Callback’ for the uitable and write the code to clear the data present in the selected ce...

6 years ago | 0

Answered
SIMULINK: How to handle cell-array as function return value during codegen
Hi, I understand that you are facing an issue with cell arrays, this is because you are using variable cell arrays which you n...

6 years ago | 0

Answered
App Designer interaction with MATLAB/SIMULINK/SIMSCAPE
You can call your simulink/simscape models programmatically. Refer to the following links: https://www.mathworks.com/help/simu...

6 years ago | 0

Answered
App Designer interaction with MATLAB/SIMULINK/SIMSCAPE
Hi,  You can write the values which you want to plot in a ‘mat file’ and load the mat file formed in the App Designer Code and...

6 years ago | 0

Answered
Delete rectangles drawn in figure axes
Hi, You can get all the Graphics Objects of the preferred type present in MATLAB figure using ‘findall’ function in MATLAB and...

6 years ago | 1

Solved


Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

7 years ago