Answered
Dynamically adding callback functionalities to uimenu items
Shreedhar - in your loop, the variable tmp is always being overwritten for i = 1 : maxLimit tmp = uimenu(app.Openrecently...

nästan 3 år ago | 0

| accepted

Answered
Tie to frequency using F
Karl - are you reading the correct columns? For example, on my Mac, the time array time = xlsread('Lab-2ciii.xlsx','A1:A300'); ...

nästan 3 år ago | 0

| accepted

Answered
How to hide a uitab with RadioButtonGroup?
Why not just hide or show the tab using the Visible property? For example, you could do app.TabGroup = uitabgroup(app.UIFigure)...

nästan 3 år ago | 0

Answered
How to convert this 'out_17-May-2021.xlsx' into 'out_20210517.xlsx'?
Joanna - perhaps try using datestr(now,'yyyymmdd') instead/

nästan 3 år ago | 0

| accepted

Answered
Displaying an image on UIAxes in App Designer that doesn't appear
Ahmed - I suspect the problem is with your variable for image1. It is declared as a global variable in ApplyNoiseButtonPushed fu...

nästan 3 år ago | 1

| accepted

Answered
Making heading data continuous (i.e. instead of 359 --> 0 degrees make it 359 --> 360 degrees)
Amritz - perhaps a polarplot might be useful: polarplot(headingData*pi/180.0, (A(:, 1)-t0)/1000);

nästan 3 år ago | 0

Answered
How do I change the axis things get plotted on?
Nick - you need to specify the axes as described at create line on axes. In your case, you might want to save the axes handle to...

nästan 3 år ago | 0

| accepted

Answered
Make a function loop
Eris - if you want to keep rolling until you have a Yatzhee, then you probably want to use a while loop. % set the roll count ...

nästan 3 år ago | 0

Answered
blackjack adding another number to a vector in a while loop & input words for a if loop
Liam - since you are asking the user to enter in the command to "stand" or "hit", then you should be using the strcmpi to compar...

nästan 3 år ago | 0

| accepted

Answered
while creating figure based app in MATLAB, how to give callback to another matlab code?
Ashwini - yes, you should be able to use your other MATLAB code depending upon how it is written. You will want it to be a funct...

nästan 3 år ago | 0

Answered
User selected points from a plot
Kyle - from https://www.mathworks.com/matlabcentral/answers/11439-selecting-data-from-a-plot-in-a-gui, there is an answer that s...

nästan 3 år ago | 0

| accepted

Answered
How do I specify a variable from a table that uses words and not numerical values
Elias - try using strcmp or the case-insensitive strcmpi.

nästan 3 år ago | 0

Answered
matlab Invalid expression error
Jakub - try adding a semi-colon after title(['t = ', num2str(t)]); so that it is distinct from the axis square; Or write e...

nästan 3 år ago | 0

Answered
Preserve Name of Indexed Variable for columns when creating a Table
TS - you can set the variable names when you create the table T = table(Time(1:50,:),Data(1:50,:),Etc(1:50,:), 'VariableNames',...

ungefär 3 år ago | 0

Answered
not enough input arguments error
sudheer - if you are calling this function from the command line (or another piece of code) as simply trans then you will get ...

ungefär 3 år ago | 0

Answered
GUI Errors on callback functions
Cua - you haven't posted what the errors are but I do think part of the problem is that the image isn't being properly saved to ...

ungefär 3 år ago | 0

Answered
Perserving a legend when running a script manually multiple times
Chay - how are you calling legend? Are you only passing a single label that you are hoping is applied to all plots? I think that...

ungefär 3 år ago | 0

Answered
Printing data results with Fprintf
azaandria - try replacing disp('Event #s won by Gymnast 2:'); disp(g2won); with disp('Event #s won by Gymnast 2:'); events...

ungefär 3 år ago | 0

| accepted

Answered
How could I code that if the user pushes “Q” then an X will be displayed the the coordinates (1,3)?
Eryn - you can use the following code to detect whether the Q (or q) button of the keyboard has been pressed function KeyboardL...

ungefär 3 år ago | 0

| accepted

Answered
increament in for loop does not working for impulse response
Tathagata - if the damping constant/factor is given by g, and you want to increment this value by 0.1 on each iteration of the l...

ungefär 3 år ago | 0

Answered
button can access audio files from computer device and display the audio graphic plot
Winda - in the push button callback, use uigetfile to allow the user to choose the audio file to load into the app. Once you hav...

ungefär 3 år ago | 0

| accepted

Answered
Repeat audio in App Designer
Mostafa - you could perhaps use a timer to periodically check the status of the audio player. If it isplaying then you would do ...

ungefär 3 år ago | 0

Answered
using the title of excel spreadhseets to name graphs
It may be possible to add a title using title if you specifiy which axes the title should be applied to. For example, your code ...

ungefär 3 år ago | 0

Answered
How to add multiple if statements
Jan - I think that you just need to add a couple of conditions to your if statement. You would need to check that the input is n...

ungefär 3 år ago | 0

| accepted

Answered
C CODE Generation - Why does my code not terminate?
HF - the code that you mention for (i = 0; i <= coffset; i++) { Xm0_data[i] = Xm0->data[(aoffset + 30 * i) - 1]; } occur...

ungefär 3 år ago | 0

Answered
Restart script when user says yes
Jake - you could try removing the while from the AnotherTeam function and put that in your main script. Suppose that AnotherTeam...

ungefär 3 år ago | 1

| accepted

Answered
Game of life code
Katara - if you wish to construct a random matrix of zeros and ones, then you could use randi as numRows = 10; numCols = 12; ...

ungefär 3 år ago | 0

Answered
How to add user inputs in a script?
Hdez - I think you want to convert your script into a function. See the link for details.

ungefär 3 år ago | 0

Answered
Increasing the figure size in GUI
hamzah - try using normalized units instead. See figure units for details.

ungefär 3 år ago | 0

Answered
Can't Stop program
ziv - I think the problem is that you are getting stuck in a loop between two functions: DrawBoard and GamePlay. DrawBoard calls...

ungefär 3 år ago | 0

Load more