Feeds
질문
Syntax for MATLAB Excel add-in
Hi everyone, The question relates to setting up a .xla function to be used with Excel, compiled using the MATLAB Library Comp...
7년 초과 전 | 답변 수: 1 | 0
1
답변답변 있음
IMAQ: Getting the ranges of the Device Specific Properties
Actually, I think I figured it out. What you need is |propinfo| (documentation <http://www.mathworks.com/help/imaq/propinfo.html...
IMAQ: Getting the ranges of the Device Specific Properties
Actually, I think I figured it out. What you need is |propinfo| (documentation <http://www.mathworks.com/help/imaq/propinfo.html...
대략 9년 전 | 1
| 수락됨
질문
IMAQ: Getting the ranges of the Device Specific Properties
Hi everyone, The question pertains to the Image Acquisition Toolbox. I'm interested in building a programmatic GUI, where I c...
대략 9년 전 | 답변 수: 1 | 0
1
답변답변 있음
Arrayfun application to avoid a FOR loop
Folks, thank you very much both for your help on the matter. Certainly helped me clear up a lot of questions I had on the implem...
Arrayfun application to avoid a FOR loop
Folks, thank you very much both for your help on the matter. Certainly helped me clear up a lot of questions I had on the implem...
대략 9년 전 | 0
질문
Arrayfun application to avoid a FOR loop
Hi everyone, The question pertains to the use of |arrayfun|. I'm interested in using |corrcoef| on a series of arrays. So far...
대략 9년 전 | 답변 수: 3 | 0
3
답변답변 있음
Using actxserver to refer cells between worksheets
Quite embarrassing, but I did manage to solve the problem, so considering the matter closed for now. For anyone who's as poor...
Using actxserver to refer cells between worksheets
Quite embarrassing, but I did manage to solve the problem, so considering the matter closed for now. For anyone who's as poor...
9년 초과 전 | 0
| 수락됨
질문
Using actxserver to refer cells between worksheets
Hi everyone, The question relates to the use of the use of the |actxserver| for an excel application. How does one use act...
9년 초과 전 | 답변 수: 1 | 0
1
답변답변 있음
Read some data from a file containing numbers and characters
Can you use the Import tool ( <http://www.mathworks.com/help/matlab/import_export/select-spreadsheet-data-interactively.html MAT...
Read some data from a file containing numbers and characters
Can you use the Import tool ( <http://www.mathworks.com/help/matlab/import_export/select-spreadsheet-data-interactively.html MAT...
9년 초과 전 | 0
답변 있음
how to remove box outline in GUI matlab using setting menu
Would something like this work? % Set the figure color; f = figure(... 'color',[0 1 0]); % Add text box co...
how to remove box outline in GUI matlab using setting menu
Would something like this work? % Set the figure color; f = figure(... 'color',[0 1 0]); % Add text box co...
9년 초과 전 | 0
답변 있음
how can I call gui frm another gui for a given position coordinates?
Can you use |setappdata| / |getappdata| to share the data between the different GUIs? (MATLAB wikia <http://matlab.wikia.com/wik...
how can I call gui frm another gui for a given position coordinates?
Can you use |setappdata| / |getappdata| to share the data between the different GUIs? (MATLAB wikia <http://matlab.wikia.com/wik...
9년 초과 전 | 0
답변 있음
How to save file as 300 dpi png?
Not a direct answer to the question at hand, but can you try export_fig from FEX (check link <http://www.mathworks.com/matlabcen...
How to save file as 300 dpi png?
Not a direct answer to the question at hand, but can you try export_fig from FEX (check link <http://www.mathworks.com/matlabcen...
9년 초과 전 | 0
답변 있음
How can I implement a reset button in a GUI code?
Anthony, can you have a look at Doug Hull's tutorial on a similar question? You can find it <http://blogs.mathworks.com/videos/2...
How can I implement a reset button in a GUI code?
Anthony, can you have a look at Doug Hull's tutorial on a similar question? You can find it <http://blogs.mathworks.com/videos/2...
9년 초과 전 | 0
| 수락됨
답변 있음
GUIDE: Text edit. Structure of handles.edit changed?
The easiest solution might be to create a separate function (say, |formatString| ) that is the callback for the |editbox| and th...
GUIDE: Text edit. Structure of handles.edit changed?
The easiest solution might be to create a separate function (say, |formatString| ) that is the callback for the |editbox| and th...
9년 초과 전 | 0
| 수락됨
답변 있음
Exporting data while 'live' processing in a GUI
Adam, thanks for the thought, and yes, something I am learning as I am going. For the purposes of this particular application, I...
Exporting data while 'live' processing in a GUI
Adam, thanks for the thought, and yes, something I am learning as I am going. For the purposes of this particular application, I...
9년 초과 전 | 0
답변 있음
Legend on MATLAB FIGURES
Perhaps it's a bit out of scope for this topic, but since you mentioned about figures being saved, thought I suggest export_fig ...
Legend on MATLAB FIGURES
Perhaps it's a bit out of scope for this topic, but since you mentioned about figures being saved, thought I suggest export_fig ...
9년 초과 전 | 0
답변 있음
GUI slider stays active after klick and starts sliding
The first thought is that the minor step size is too small, which means that when you click a bunch of times on the slider, the ...
GUI slider stays active after klick and starts sliding
The first thought is that the minor step size is too small, which means that when you click a bunch of times on the slider, the ...
9년 초과 전 | 0
답변 있음
how to change static text in MATLAB GUI?
A very basic example: f = figure; t = uicontrol(f,'Style','text',... 'String','Select a data set.',... 'Po...
how to change static text in MATLAB GUI?
A very basic example: f = figure; t = uicontrol(f,'Style','text',... 'String','Select a data set.',... 'Po...
9년 초과 전 | 0
답변 있음
How to extract processed data from a .exe file created using matlab into a more accesible format (e.g.- .txt, .xls, etc.)
There are a couple of different options like |writetable| ( <http://www.mathworks.com/help/matlab/ref/writetable.html doc writet...
How to extract processed data from a .exe file created using matlab into a more accesible format (e.g.- .txt, .xls, etc.)
There are a couple of different options like |writetable| ( <http://www.mathworks.com/help/matlab/ref/writetable.html doc writet...
9년 초과 전 | 1
| 수락됨
답변 있음
How can I get X and Y column Matrices from plotted data?
Perhaps check out |bwboundaries| example? (click <http://www.mathworks.com/help/images/ref/bwboundaries.html here> .) Looks l...
How can I get X and Y column Matrices from plotted data?
Perhaps check out |bwboundaries| example? (click <http://www.mathworks.com/help/images/ref/bwboundaries.html here> .) Looks l...
9년 초과 전 | 0
답변 있음
Accessing the output individually
This is beyond the scope of the original question, but you could also try |struct2table| (read <http://www.mathworks.com/help/ma...
Accessing the output individually
This is beyond the scope of the original question, but you could also try |struct2table| (read <http://www.mathworks.com/help/ma...
9년 초과 전 | 0
답변 있음
Accessing the output individually
Perhaps try |timeValues = [logfile_P.time]| to make a vector and then extract |timeValues(1:25)| ?
Accessing the output individually
Perhaps try |timeValues = [logfile_P.time]| to make a vector and then extract |timeValues(1:25)| ?
9년 초과 전 | 0
| 수락됨
답변 있음
GUI - Text to label scatter plot data gets ignored / only works when running function multiple times
Should there be a |hold on| between |ylim| and |text|? Also, one thing I find useful when setting axes is to have a |clear ax...
GUI - Text to label scatter plot data gets ignored / only works when running function multiple times
Should there be a |hold on| between |ylim| and |text|? Also, one thing I find useful when setting axes is to have a |clear ax...
9년 초과 전 | 0
답변 있음
Reshape Video Matrix Into Long RGB Matrix and Back
Can you use something like this? % Concatenate along 'fourth' dimension. alpha = cat(4,newArray(:,:,:)); % Extrac...
Reshape Video Matrix Into Long RGB Matrix and Back
Can you use something like this? % Concatenate along 'fourth' dimension. alpha = cat(4,newArray(:,:,:)); % Extrac...
9년 초과 전 | 0
질문
Exporting data while 'live' processing in a GUI
Hi everyone, The question pertains to the export of data from a GUI that is 'live' processing data from an incoming datastrea...
9년 초과 전 | 답변 수: 2 | 0
2
답변답변 있음
Using Dino-Lite Microscopes with MATLAB
Actually, in case it matters to anyone, I think I have it figured out. The key is to download the LED control package from Di...
Using Dino-Lite Microscopes with MATLAB
Actually, in case it matters to anyone, I think I have it figured out. The key is to download the LED control package from Di...
9년 초과 전 | 2
| 수락됨
질문
Using Dino-Lite Microscopes with MATLAB
Hi everyone, The question pertains to the use of a Dino-Lite microscope (Model I'm using: AM7013MZT) via the Image Acquisitio...
9년 초과 전 | 답변 수: 1 | 1
1
답변문제를 풀었습니다
Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...
거의 10년 전
문제를 풀었습니다
Fahrenheit to Celsius using multiple statements
°C = (°F - 32) x 5/9 * Write a statement that assigns fractionalMultiplier with 5/9. * Write a second statement that assign...
거의 10년 전
문제를 풀었습니다
Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...
거의 10년 전
문제를 풀었습니다
Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...
거의 10년 전