Beantwortet
Grabbing all files in a folder
Take a look at <http://www.mathworks.com/help/matlab/ref/uigetdir.html |uigetdir|> and <http://www.mathworks.com/help/matlab/ref...

mehr als 13 Jahre vor | 11

| akzeptiert

Beantwortet
How to run standalone .exe file on computer without MATLAB?
In <http://www.mathworks.com/access/helpdesk/help/toolbox/compiler/deploytool.html |deploytool|>, you should see a tab called "P...

mehr als 13 Jahre vor | 0

Beantwortet
How to make waitbar 'always on top'/bring to front
Try setting the |WindowStyle| of the <http://www.mathworks.com/help/matlab/ref/waitbar.html |waitbar|> to |modal|: h = wait...

mehr als 13 Jahre vor | 1

Beantwortet
Complexity of medfilt2 implementation in Matlab?
Did you check out the reference paper indicated at the end of the page for <http://www.mathworks.com/access/helpdesk/help/toolbo...

mehr als 13 Jahre vor | 0

| akzeptiert

Beantwortet
Determine if mouse click on a plot is within plot region
What do you mean by "plot region"? Within the X-limit of the axes? Within the plotted data range? Take a look at <http://www...

mehr als 13 Jahre vor | 0

| akzeptiert

Beantwortet
Utilising Multicore on Linux Matlab 7.11 64-bit
Element-wise matrix operations *_are_* multithreaded by default in your MATLAB version. In fact, this has been true since R2008a...

mehr als 13 Jahre vor | 3

| akzeptiert

Beantwortet
RMSE
One way is to compute it yourself. You just need to compute the root of the mean of the squared errors (hence the name): y = ...

mehr als 13 Jahre vor | 2

| akzeptiert

Beantwortet
Deploy for windows 32-bit from a 64-bit computer
If you don't have access to a 32-bit computer, that's a problem. You need to run through the deployment process on the same plat...

mehr als 13 Jahre vor | 2

Beantwortet
how to find sufficient help in MATLAB IMPORTANT - MATLAB admin
From my own personal experience, here are some resources for getting help and learning MATLAB concepts: # <http://www.mathworks...

mehr als 13 Jahre vor | 1

| akzeptiert

Beantwortet
Speech recognition using .NET framework
See this <http://www.mathworks.com/matlabcentral/answers/825-speech-recognition-coding post>.

mehr als 13 Jahre vor | 0

Beantwortet
How to search for peaks in a signal?
Try using <http://www.mathworks.com/access/helpdesk/help/toolbox/signal/findpeaks.html |findpeaks|> from the <http://www.mathwor...

mehr als 13 Jahre vor | 0

Beantwortet
Delete a file on click of Pushbutton
Try: delete([delID, '.dat']) Explanation: |delID| is a variable that contains character string. To construct the file na...

mehr als 13 Jahre vor | 0

Beantwortet
bug in matlab 2010b, trig functions (cosd, sind etc.)
What's your OS and machine type? I'm on 32-bit 2010b on Win7, and I get the correct result (different from yours). Just to make ...

mehr als 13 Jahre vor | 0

Beantwortet
nested smpd instructions
Nesting <http://www.mathworks.com/access/helpdesk/help/toolbox/distcomp/spmd.html |spmd|> or <http://www.mathworks.com/access/he...

mehr als 13 Jahre vor | 0

Beantwortet
How to plot with YYYYMM date format on x-axis?
This would convert your dates in YYYYMM format to serial dates which would have the correct intervals between the dates. x = ...

mehr als 13 Jahre vor | 0

| akzeptiert

Beantwortet
How to make a 'browse window' to search for documents
Perhaps <http://www.mathworks.com/help/matlab/ref/uigetfile.html |uigetfile|>.

mehr als 13 Jahre vor | 0

Beantwortet
how to build standalone application
You need a C compiler. Take a look at <http://www.mathworks.com/support/compilers/R2010b/win64.html this page> under "MATLAB Com...

mehr als 13 Jahre vor | 0

Beantwortet
Boxplot: second Y axes labels
I can only think of a workaround... *EDIT*: Per Oleg's comment, I've added a "ResizeFcn" for the figure to adjust the axes prop...

mehr als 13 Jahre vor | 2

| akzeptiert

Beantwortet
How to set excel cell color to red from Matlab?
This works for me: % Connect to Excel Excel = actxserver('excel.application'); % Get Workbook object WB = Excel....

mehr als 13 Jahre vor | 10

| akzeptiert

Beantwortet
Surface fitting problem
I assume you are using version R2010a or older. Your syntax should work for the newer versions. You seem to have vectors for ...

mehr als 13 Jahre vor | 0

Beantwortet
How to read external file data from a .xls file into matlab
If you're on Windows, you can use the <http://www.mathworks.com/access/helpdesk/help/techdoc/matlab_external/brd0v8r.html COM cl...

mehr als 13 Jahre vor | 2

Beantwortet
field delimiter uses any char as to declare a new field instead of full string
Use <http://www.mathworks.com/help/matlab/matlab_prog/f0-42649.html Regular Expressions>, such as <http://www.mathworks.com/help...

mehr als 13 Jahre vor | 1

Beantwortet
MATLAB "Out of memory" problem
Read through the links in Andreas's answer. And I agree with Andreas and Oleg about the question of "why you need such a big mat...

mehr als 13 Jahre vor | 0

Beantwortet
Dynamic changing values
Just redefine |a| and |d| after you update the other values: for id = 1:100 a = x1*b + x2 * c d = x1*e + x2 * f...

mehr als 13 Jahre vor | 0

Beantwortet
Compose with validateattributes
Considering that you require a workaround anyway, I might go with this for your specific case: p.addParamValue('w',1, @(x) ...

mehr als 13 Jahre vor | 0

Beantwortet
Add a new Excel sheet from Matlab
According to the <http://msdn.microsoft.com/en-us/library/bb179213(v=office.12).aspx VBA documentation on MSDN>, to add after th...

mehr als 13 Jahre vor | 6

| akzeptiert

Beantwortet
Help regarding "format long"
Take a look at this <http://matlab.wikia.com/wiki/FAQ#Why_is_0.3_-_0.2_-_0.1_.28or_similar.29_not_equal_to_zero.3F FAQ>.

mehr als 13 Jahre vor | 0

Beantwortet
Tabbing between opened Editor tabs
"Ctrl-Page Up" and "Ctrl-Page Down" will let you switch between different tabs.

mehr als 13 Jahre vor | 8

| akzeptiert

Beantwortet
How to use the Fminsearch in in MATLAB 6.5?
You are using <http://www.mathworks.com/help/matlab/matlab_prog/f4-70115.html anonymous functions>, which were introduced in MAT...

mehr als 13 Jahre vor | 0

| akzeptiert

Beantwortet
Implementing an hgsetget subclass
This is interesting. It does seem like the documentation isn't complete. It mentions how calling the <http://www.mathworks.com/h...

mehr als 13 Jahre vor | 1

Mehr laden