Answered
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...

meer dan 10 jaar ago | 0

Answered
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...

meer dan 10 jaar ago | 0

Answered
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...

meer dan 10 jaar ago | 1

Answered
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...

meer dan 10 jaar ago | 0

| accepted

Answered
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...

meer dan 10 jaar ago | 0

Answered
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...

meer dan 10 jaar ago | 0

Answered
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....

meer dan 10 jaar ago | 0

Answered
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...

meer dan 10 jaar ago | 1

| accepted

Answered
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...

meer dan 10 jaar ago | 0

Answered
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))],'@',''),...

meer dan 10 jaar ago | 1

| accepted

Solved


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...

bijna 11 jaar ago

Answered
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 ...

bijna 11 jaar ago | 0

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

bijna 11 jaar ago | 0

| accepted

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

bijna 11 jaar ago | 0

| accepted

Answered
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...

bijna 11 jaar ago | 0

Answered
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...

bijna 11 jaar ago | 0

Answered
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...

bijna 11 jaar ago | 0

| accepted

Answered
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....

bijna 11 jaar ago | 0

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

bijna 11 jaar ago | 0

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

bijna 11 jaar ago | 0

Answered
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...

bijna 11 jaar ago | 0

| accepted

Answered
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>

bijna 11 jaar ago | 0

Answered
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...

bijna 11 jaar ago | 0

| accepted

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

bijna 11 jaar ago | 1

Answered
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...

bijna 11 jaar ago | 1

| accepted

Answered
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.

bijna 11 jaar ago | 0

Answered
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:...

bijna 11 jaar ago | 0

Answered
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 ...

bijna 11 jaar ago | 2

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

bijna 11 jaar ago | 1

| accepted

Answered
??? 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); ...

bijna 11 jaar ago | 0

Load more