回答済み 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...
回答済み 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 ...
回答済み 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...
回答済み 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...
7年弱 前 | 1
解決済み
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 + ...