Feeds
回答済み
Detecting an empty uitable
try the command "isempty" for example: if isempty(data) == 0 disp('data is here') else disp('data is not here')...
Detecting an empty uitable
try the command "isempty" for example: if isempty(data) == 0 disp('data is here') else disp('data is not here')...
12年以上 前 | 0
回答済み
position of maximum in matrix
Let's say A = [1 2 3; 4 5 6; 7 8 9]; [row,columns] = size(A); index_matrix = zeros(1,columns) for i = 1:columns ...
position of maximum in matrix
Let's say A = [1 2 3; 4 5 6; 7 8 9]; [row,columns] = size(A); index_matrix = zeros(1,columns) for i = 1:columns ...
12年以上 前 | 0
回答済み
Delete a plot in GUI rutine
assuming the graph where you are plotting things is called graph_one then follow the example: cla(handles.graph_one) plot...
Delete a plot in GUI rutine
assuming the graph where you are plotting things is called graph_one then follow the example: cla(handles.graph_one) plot...
12年以上 前 | 1
| 採用済み
回答済み
Replace Nan with previous numbers
try the following: x = isnan(data); for i = length(data) if x(i) == 1 data(i) = data(i-1); end end ...
Replace Nan with previous numbers
try the following: x = isnan(data); for i = length(data) if x(i) == 1 data(i) = data(i-1); end end ...
12年以上 前 | 0
回答済み
¿Quisiera saber sobre matlab server con que comando puedo empezar?
Si quieres hacer un GUI, escribi GUIDE en la pantalla de ordenes. Despues eligi la primera opcion y continua de ahi.
¿Quisiera saber sobre matlab server con que comando puedo empezar?
Si quieres hacer un GUI, escribi GUIDE en la pantalla de ordenes. Despues eligi la primera opcion y continua de ahi.
12年以上 前 | 1
回答済み
calling a gui from another gui in guide
If your main GUI will have 2 buttons then, under the function calls for each of the buttons you simply want to call the name of...
calling a gui from another gui in guide
If your main GUI will have 2 buttons then, under the function calls for each of the buttons you simply want to call the name of...
12年以上 前 | 0
回答済み
GUI and dealing with functions
you can either, as Image Analyst states, get(handles.dropdownmenu1,'Value') during each function or you can simply store it in t...
GUI and dealing with functions
you can either, as Image Analyst states, get(handles.dropdownmenu1,'Value') during each function or you can simply store it in t...
12年以上 前 | 0
回答済み
Needs Checkbox to draw a plot
Write an if statement that gets the value of the checkbox. When the checkbox's value is 1 then plot. This snip of code would hav...
Needs Checkbox to draw a plot
Write an if statement that gets the value of the checkbox. When the checkbox's value is 1 then plot. This snip of code would hav...
12年以上 前 | 0
| 採用済み
質問
How can I Autofill a Cell in a Table?
I have placed a (3,1) table in a GUI and would like it to autofill the third cell with the same value the user added in the firs...
12年以上 前 | 1 件の回答 | 0
1
回答質問
Creating an empty table matlab GUI
The default size of a table on matlab appears to be a 4x2. However I created a variable A = ones(3,1) and chose the data on the ...
12年以上 前 | 1 件の回答 | 0
1
回答質問
Tables in GUIs
I have a 6x3 table in a GUI and when the user inputs numbers I would like to create a plot. Beforehand however, I have anoth...
12年以上 前 | 0 件の回答 | 0
0
回答質問
Problem using copyobj
I have created a GUI with 2 axes. The code I generated plots data onto both axes however what I want to do is export these 2 axe...
約13年 前 | 1 件の回答 | 0
1
回答質問
GUI Plotting "hold on" problem
So my GUI contains two axes and multiple checkboxes. If the user checks on a checkbox part of the corresponding data for that ch...
13年以上 前 | 2 件の回答 | 1
2
回答質問
Underlining a String or Bolding it
How can I underline the title or put it in bold? I have the following code: for j = 1:totalcount title = sprintf('L...
13年以上 前 | 1 件の回答 | 1
1
回答質問
Is it possible to add a textbox outside the axes of a plot figure window?
I have tried the command "text(x,y,'String')" but that requires a specific location and my figure window plots always have diffe...
13年以上 前 | 2 件の回答 | 1
2
回答質問
Matlab Legend
So in my plot I have numerous different programs being plotted however a certain program is being plotted in blue while all the ...
13年以上 前 | 1 件の回答 | 0
1
回答質問
Plotting different data
So I am trying to plot about 150 different things on a matlab figure window and I was wondering if there was any possible way fo...
13年以上 前 | 1 件の回答 | 0
1
回答質問
MATLAB GUI Popup Menu
So I'm trying to create a popup menu whose options depend on another selection made earlier in the GUI. I know one can simply ad...
13年以上 前 | 1 件の回答 | 0
1
回答質問
Matlab Color Vectors
Is there any website where I may obtain a list of Matlab's color vectors? I can only seem to find a website with the rgb color v...
13年以上 前 | 3 件の回答 | 0
3
回答質問
Sharing Data between two GUIs
I basically have one main GUI that is calling for a smaller GUI which simply contains clear check boxes. What I want to do is be...
13年以上 前 | 1 件の回答 | 0