Answered Help using menu option
How about a question dialog box?
https://www.mathworks.com/help/matlab/ref/questdlg.html#mw_306ac9ac-5847-458e-b5c5-78ef8926ea4...
4 years ago | 0
Answered Writting data to text file (json)
See jsonencode()
To write the encoded data "encoded" to file:
fid = fopen('file.json','w');
fprintf(fid,'%s',encoded);
fclos...
4 years ago | 1
| accepted
Answered Command lines appear when I run an app.
It sounds like you have a line somewhere that is missing a semicolon.
If you set a property in the app but don't terminate the ...
4 years ago | 0
| accepted
Answered Median power using find function
From that line,
ninteg(1,j:)
is invalid syntax. If you want element j through the end of the vector, you need
ninteg(1,j:end...
Answered store multiple outputs into one matrix
Arrays with compatible dimensions can be concatenated using either square brackets or the cat() function.
In this case, it look...
4 years ago | 0
Solved
The Piggy Bank Problem
Given a cylindrical piggy bank with radius g and height y, return the bank's volume. [ g is first input argument.]
Bonus though...
4 years ago
Answered How to fold up code in live script?
This isn't a feature for live scripts right now, but if you would like to see it please consider submitting an enhancement reque...