回答済み
Use of "Break" in switch statement
What do you mean by "if the switch statement is fulfilled"? Are you trying to get out of the whole switch-case block while you a...

約15年 前 | 0

回答済み
in wat order multiple images will be read and store in workspce?
That depends on how you read it in. You can't read all 10 images with a single <http://www.mathworks.com/help/matlab/ref/imread....

約15年 前 | 0

回答済み
Evaluate symbolic matrix numerically.
Use <http://www.mathworks.com/help/toolbox/symbolic/subs.html |subs|>: subs(matrix, {A, B}, {0.5, 1})

約15年 前 | 4

公開済み


Looking Backwards: 2006 in Review
This week, I continue looking backward, with a retrospective of all of the File Exchange Picks of the Week for the...

約15年 前

Thumbnail

回答済み
parfor with very different computation times
Normally, <http://www.mathworks.com/access/helpdesk/help/toolbox/distcomp/parfor.html |parfor|> does load balancing. |parfor| br...

約15年 前 | 3

回答済み
Problem with matlab not finding compilers using "mex -setup"
Could it be because Microsoft Visual 2010 Express was not officially supported in R2008b version of MATLAB? Here's the supported...

約15年 前 | 0

回答済み
Simple, compiled "Hello, World" function takes 3 seconds to execute? Why so slow?
Kaustubha's explanation about MATLAB Compiler Runtime (MCR) is correct. The runtime is essentially MATLAB (without the desktop a...

約15年 前 | 1

公開済み


Log and Inspect Simulink data quickly with SIMLOG
Doug's pick this week is SIMLOG by Robin Larsson Hi, my name is Doug, and I'm one the guest pickers that will be...

約15年 前

Thumbnail

回答済み
Plot Legend
If you look at the documentation for <http://www.mathworks.com/help/matlab/ref/legend.html |legend|>, there's a syntax where you...

約15年 前 | 2

| 採用済み

回答済み
Handling large AVI videos
You say you need to analyze the video "frame-by-frame". That seems to indicate that you don't need to store all of the frames in...

約15年 前 | 1

回答済み
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...

約15年 前 | 11

| 採用済み

回答済み
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...

約15年 前 | 0

回答済み
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...

約15年 前 | 1

回答済み
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...

約15年 前 | 0

| 採用済み

回答済み
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...

約15年 前 | 0

| 採用済み

回答済み
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...

約15年 前 | 3

| 採用済み

回答済み
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 = ...

約15年 前 | 2

| 採用済み

回答済み
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...

約15年 前 | 2

回答済み
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...

約15年 前 | 1

| 採用済み

公開済み


Be Absolute about your Relative Path with GetFullPath
Jiro's pick this week is GetFullPath by Jan. Jan is no stranger to good File Exchange entries. I've already...

約15年 前

Thumbnail

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

約15年 前 | 0

回答済み
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...

約15年 前 | 0

回答済み
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...

約15年 前 | 0

回答済み
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 ...

約15年 前 | 0

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

約15年 前 | 0

公開済み


Looking Back: 2005 in Review
In my last post, I started to index all of the File Exchange submissions that had been selected as "Picks of the...

約15年 前

Thumbnail

回答済み
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 = ...

約15年 前 | 0

| 採用済み

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

約15年 前 | 0

回答済み
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...

約15年 前 | 0

回答済み
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...

約15年 前 | 2

| 採用済み

さらに読み込む