Feeds
質問
How can I acquire position data from an encoder?
For my senior project we need to use two encoders to track the vertical and horizontal position of a device. I'm a mechanical en...
約12年 前 | 0 件の回答 | 0
0
回答回答済み
How can i measure length interactively in axes in gui?
You should be able to use something like this: figure; axis manual ruler = imline(gca); % Get original positio...
How can i measure length interactively in axes in gui?
You should be able to use something like this: figure; axis manual ruler = imline(gca); % Get original positio...
12年以上 前 | 1
質問
How can I sort a string both alphabetically and numerically?
I'm using a list box that displays the names of the shapes I am storing in a shapefile. I'm using the sort function to list the...
12年以上 前 | 5 件の回答 | 0
5
回答回答済み
how do you hide an output?
Might try this: [junk, name]=strtok(file(3),'_p'); [right,name]=strtok(name,'_p'); [left,name]=strtok(name,'_V'); ...
how do you hide an output?
Might try this: [junk, name]=strtok(file(3),'_p'); [right,name]=strtok(name,'_p'); [left,name]=strtok(name,'_V'); ...
12年以上 前 | 1
回答済み
Simple program with a formula
function xyz x = uicontrol('style','edit','units','normalized',... 'position',[.18 .5 .2 .2],'callback...
Simple program with a formula
function xyz x = uicontrol('style','edit','units','normalized',... 'position',[.18 .5 .2 .2],'callback...
12年以上 前 | 0
| 採用済み
回答済み
GUI
% Intial value of a a = 2; setappdata(0,'a',a) %%%%%%%%%%%%% setappdata(0,'a',a+1) % Put this part within the callba...
GUI
% Intial value of a a = 2; setappdata(0,'a',a) %%%%%%%%%%%%% setappdata(0,'a',a+1) % Put this part within the callba...
12年以上 前 | 0
回答済み
How can I load a GUI into another GUI?
If you design the GUI programmatically, this should be possible, but with GUIDE I don't think so.
How can I load a GUI into another GUI?
If you design the GUI programmatically, this should be possible, but with GUIDE I don't think so.
12年以上 前 | 0
回答済み
Exchanging data between different GUI
If you set and get the app data from the root instead of from an individual GUI, all the others GUI figures should be able to se...
Exchanging data between different GUI
If you set and get the app data from the root instead of from an individual GUI, all the others GUI figures should be able to se...
12年以上 前 | 0