Answered
Need to put a max value on my variable
Would adding the number of elements in A and B (determined using size or length -- refer to the doc for exactly what these funct...

14 years ago | 0

Answered
Calling a .exe in Matlab that requires a passphrase
You can try using some of the redirect functionality to respond to the prompt. It may or may not work, though. Examples: http:...

14 years ago | 0

| accepted

Answered
Wait for Google Earth to finish loading before invoking the next command
I don't have a particular answer to this exact question, but when faced with similar situations in the past, most specifically w...

14 years ago | 0

| accepted

Answered
Help for Out of memory issues while saving MATLAB figures
Task Scheduler jobs are run at a lower priority than interactive use. You can up the priority by editing the XML of the task in...

14 years ago | 0

Answered
Addpath accumulated time lags
Have you tried using rmpath when you are done with a given path? Also, have you reviewed the path as your script progresses? ...

14 years ago | 0

Answered
How to select variable based on numbers in variable name?
Do you need to create all these variables with the names, or you could you make an array called X and then use the index? X...

14 years ago | 0

Answered
Installing an Executable file
Those instructions are for the Mac. I assume you are on Windows since you are referring to .exe files? There is no Finder, .ap...

14 years ago | 0

Answered
Matlab Automation - Check if pdf is open and by which user.
You are being too nice! It sounds like this .pdf is intended to be used for read-only use. You can set up the share so that ...

14 years ago | 1

| accepted

Answered
Send for loop iterations to multiprocessors
Try putting your inner loop in a function and calling the function instead. e.g.: parfor ii = 1:4 somethingout = myloopfun...

14 years ago | 1

| accepted

Answered
How to roll out MSVC Express Edition (for use with MATLAB) on Win64
Best practices for this kind of situation are to use scripted installations and some sort of package manager that will track the...

14 years ago | 1

Answered
Matlab to MPG
http://www.mathworks.com/matlabcentral/fileexchange/309

14 years ago | 0

Answered
feature extraction
Steve Eddins has a blog about image processing. You might be particularly interested in the M&M processing entries: http://...

14 years ago | 0

Answered
Merge Html Files
Since HTML is simply a text file you can append these together very easily. Both UNIX and Windows support these types of operat...

14 years ago | 0

Answered
32 bit mex with 32 bit MATLAB on Windows 7 64 bit OS failure to run
Make sure your 32-bit and 64-bit houses are in order, as they are likely not arranged how you expect them to be. On 64-bit Wind...

14 years ago | 1

Answered
Matlab and Unix server - path issues when trying to create and save to folder from Matlab
Can you create a file in graphs\fig\fig_practice outside of MATLAB? Do you get any errors when you run your code? If you r...

14 years ago | 0

Answered
Best way to parse data from a large, mixed-format text file
Have you considered putting the data into a database and then using database calls to get the data out? It seems from your de...

14 years ago | 0

Answered
GigE Vision Devices on Windows 7
Do you have UAC enabled on the machine? Some of the locations in the environment variables mentioned above may not be writable ...

14 years ago | 0

Answered
Using fprintf for .txt file
What program are you opening it with? (I assume MATLAB, but it could also be Word, Notepad, Wordpad, etc). I've had experience...

14 years ago | 0

| accepted

Answered
Unable to activate R2011a on Linux Mint 64-bit
I'd call/contact Install Support.

14 years ago | 0

Answered
dos command line invocation
There are a number of options you can pass. In your case, I think you would use -minimize, -nosplash and the path to the m-file...

14 years ago | 0

| accepted

Answered
problem with matlab when executing the same program twice?
Are you exhausting some resource the first time through that prevents the second run from using them? Examples might include bu...

14 years ago | 0

| accepted

Answered
Compiler cannot find "tmwtypes.h"
These are header files, so they should be just text. Can you open them in a text editor? If you can't, check the permissions o...

14 years ago | 0

Answered
GPU parallel computing
This question has been answered many times on the more traditional "hardware" sites (Tom's Hardware, etc), as well as on the nVi...

14 years ago | 0

Answered
GPU vs CPU
As the others have mentioned, there is no easy answer to this question. The answer is highly dependent upon the functions you a...

14 years ago | 1

Answered
Error when running several Matlab scripts concurrently
Are you sharing a directory to store intermediate results, data files, temp files, etc? If you have filenames that are the same...

14 years ago | 0

Answered
matlab to notepad
How are you sending them? Can you post some example code? This link might help with the formatting of the string you send: ...

14 years ago | 1

| accepted

Answered
simulating a job scheduler behaviour
Do you have the Parallel Computing Toolbox? One of the things you can define is an interface to a "generic" scheduler. There ar...

15 years ago | 0

Answered
Calling Matlab functions using WSDL
MATLAB Distributed Computing Server integrates with Microsoft HPC Server. You can submit SOA jobs to the compute cluster from M...

15 years ago | 0

Answered
measuring time
Check out tic and toc

15 years ago | 1

Answered
Batch Files and Matlab: Sequential execution and "start \wait"
As a further refinement of your above loop, you could replace the pause with a check that symbolizes processing is still ongoing...

15 years ago | 0

Load more