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