답변 있음
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))],'@',''),...

거의 11년 전 | 1

| 수락됨

답변 있음
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

답변 있음
How to eleminate 'clock' error generated during code generation.
Refer this list of functions allowed from code gen perspective : <http://www.mathworks.in/help/simulink/ug/functions-supporte...

거의 11년 전 | 0

| 수락됨

답변 있음
what is the script to get line handle by selecting line in a model
Not aware of anything that gets you handle of a selected line. But find_system(bdroot,'findall','on','Type','Line') giv...

거의 11년 전 | 1

| 수락됨

답변 있음
Matlab crashes because of ResumeThread function
Contact the MathWorks tech support.

거의 11년 전 | 0

답변 있음
Why do some functions like fread, find, sum (etc) not show up in Profiler?
I checked what u said in R2013a. The profile report has the following note at the start : Note that built-in functions do ...

거의 11년 전 | 0

답변 있음
Importing xls file in Signal Builder Block
In that case you will have to use <http://www.mathworks.in/help/releases/R2010a/toolbox/simulink/slref/signalbuilder_cmd.html si...

거의 11년 전 | 1

답변 있음
Viewing .slx in older versions in matlab
Get somebody with a R2012b+ version to convert the .slx to an earlier version (in ur case R2010a). Refer this <http://www.mat...

대략 11년 전 | 0

답변 있음
arranging a matrix data
There will offcourse be a smarter way to do this, but to get you started: Ao = []; Interval = 3; for i = 1 : Inte...

대략 11년 전 | 0

질문


Has the Matlab Startup Accelerator utility in any way affected system performance / memory usage for anybody?
I have multiple MATLAB versions installed on my system. Since R2011b onwards the installer adds a task to the windows scheduler....

대략 11년 전 | 답변 수: 1 | 2

1

답변

답변 있음
Transfer data from callback workspace to base workspace
You could modify these m-files (that are processing data from the excel file) to dump the processed data directly to the base WS...

대략 11년 전 | 0

더 보기