답변 있음
Executing startup failed in matlabrc C:\vlfeat-0.9.16\toolbox\vl_setup not found.
I have no idea what vlfeat is/does but Google gave this <http://www.vlfeat.org/ vlfeat>. The latest version is indicated as vlfe...

10년 초과 전 | 0

답변 있음
I want to create a chain of inputdlg boxes.how to proceed?
You will have to create your own version of the inputdlg box and set its callback to call another one. The matlab inputdlg waits...

10년 초과 전 | 0

답변 있음
two listboxes in a GUI
Check if the tag of the second listbox is 'listbox2'. Also confirm if the second listbox has been created when you are trying to...

10년 초과 전 | 1

답변 있음
how to access array of structures in simulink which are loaded from work space using preload fcn, updating the structure values in runtime and these updated values to be implemented in model?
Use: set_param( MdlName, 'PreloadFcn', YourFunction); this works during simulation as well. Similarly you can set the S...

10년 초과 전 | 0

| 수락됨

답변 있음
How to make push buttons in GUI that are unable to be pressed until another push button is pressed?
If you are using GUIDE: When your editing your GUI, double click on the component to get the property inspector. In it, set t...

10년 초과 전 | 0

답변 있음
Blank GUI figure handle? (noob question)
The _hObject_ is the handle to the object/component triggering the callback. Also the gui/figure handle would be probably in _ha...

10년 초과 전 | 0

답변 있음
How to open data file by browsing it - MATLAB GUI
Is there a particular reason to both load and textscan the file ? While loading use the '-ascii' argument to force <http://www....

10년 초과 전 | 0

답변 있음
size of the text in matlab
In case of MS Windows: The Ctrl+/- command works in the Help documentation. The settings for fonts can be found at Home ta...

10년 초과 전 | 1

| 수락됨

답변 있음
How can I open the "globalsearchnlp.m" function?
Because it's a pcode file. Its in matlabroot\toolbox\globaloptim\globaloptim\private. There is also an xml of the same name a...

10년 초과 전 | 0

답변 있음
How to store a number of arrays in excel file?
Dim = size(data1); % output is [ m, n] Range = ['A1:',strrep([char(64+floor(Dim(2)/26)),char(64+rem(Dim(2),26))],'@',''),...

10년 초과 전 | 1

| 수락됨

문제를 풀었습니다


Pascal's Triangle
Given an integer n >= 0, generate the length n+1 row vector representing the n-th row of <http://en.wikipedia.org/wiki/Pascals_t...

거의 11년 전

답변 있음
Why does Microsoft Outlook not like MATLAB's .MAT files?
What type of attachments are blocked depends on the internet policies of your company. I have personally not faced any problems ...

거의 11년 전 | 0

답변 있음
How to compare two vectors with numbers?
try <http://www.mathworks.in/help/matlab/ref/ismember.html ismember>

거의 11년 전 | 0

| 수락됨

답변 있음
trim cell array from known characters
Assuming a = {'AB XY';' , PO;';'SE , '} use regexprep( a, '[\s;,]', '') to remove spaces, semicolons a...

거의 11년 전 | 0

| 수락됨

답변 있음
How can I match a clock time to a variable?
In the callback for the button being clicked, update the data on the uitable using, TableData = get( handles.uitabletag, 'D...

거의 11년 전 | 0

답변 있음
Converting an array of string to an array of variables
Not sure I understand your question. Are you trying to create an array of the 'variables' array ? b(1:5)= {variables} % giv...

거의 11년 전 | 0

답변 있음
How to reset a pushbutton activity by using another pushbutton one
If you are using guide generated gui, in the callback for the reset button use set(handles.pushbuttontag, 'Property', 'Pro...

거의 11년 전 | 0

| 수락됨

답변 있음
While working in GUI, how I can work with full screen?
You could set the 'Units' to 'Normalized' ensuring that when you expand the figure, all components on ur GUI resize accordingly....

거의 11년 전 | 0

답변 있음
reading in an edit text in gui
Refer these : <http://www.mathworks.in/help/matlab/examples/index.html#creating-graphical-user-interfaces Examples>

거의 11년 전 | 0

답변 있음
Creating variable whose name is part of a string
You could try this: eval([name, ' = 10'])

거의 11년 전 | 0

답변 있음
prompt line blocks access to figure
You could add a pushbutton to the plot figure or a dialog box maybe, indicating to the user that they can use that button/dialog...

거의 11년 전 | 0

| 수락됨

답변 있음
How to take output from another m file in gui?
Refer these : <http://www.mathworks.in/help/matlab/examples/index.html#creating-graphical-user-interfaces Examples>

거의 11년 전 | 0

답변 있음
Column names in data sheet
In your case test is a structure with three fields data, textdata and colheaders. Then again whether it is a matrix, struct or a...

거의 11년 전 | 0

| 수락됨

답변 있음
Matlab GUI size problem
Try using the 'Units', 'Normalized' param-value combination for all GUI components including the GUI itself. This te...

거의 11년 전 | 1

답변 있음
cellfun can not combines the outputs in arrays, even the outputs have the same size?
Yang, As per documentation on cellfun "UniformOutput 'true' indicates that for all inputs, each output from the function is a...

거의 11년 전 | 1

| 수락됨

답변 있음
Initializing GUI through GUIDE
Your GUI fig file and the corressponding mfile are probably out of sync. Open a blank gui and try saving it as it is.

거의 11년 전 | 0

답변 있음
Controlling For loop using matlab
Check the for loop counter when displaying the progress. You want to display progress only when counter is 1. Use this <http:...

거의 11년 전 | 0

답변 있음
How to add a loop counter and respond to user input
When in doubt write a pseudo code: 1) Prompt user to enter something ( in ur case a number ) 2) Accept number from user ...

거의 11년 전 | 2

답변 있음
how to combine these 2 matrix
a = ones(10,400); b = ones(10,9); c = [ a, b]; % c is a 10x409 size matirx

거의 11년 전 | 1

| 수락됨

답변 있음
??? Undefined function or method 'isnan' for input arguments of type 'struct'.
The function stack is as follows: GGcall > kmeans > statremovenan The command wasnan = wasnan | any(isnan(y),2); ...

거의 11년 전 | 0

더 보기