Answered
How to write functions with input propertys?
This sounds like what you are looking for: http://www.mathworks.com/help/matlab/matlab_prog/parse-function-inputs.html

ungefär 11 år ago | 1

| accepted

Answered
Installation issues on Windows 8 64 bit [R2012a]: silent failure of installer
# Reboot to make sure that anything half-done will be stopped. # Try launching the installer from an elevated command prompt (r...

ungefär 11 år ago | 0

Answered
getting string from the command window output
Have you tried using the Import Wizard on the file? Right click, "Import Data", then do what you need to, then under "Import Se...

ungefär 11 år ago | 0

Answered
Older Version of Matlab for an older Computer?
There is an archive of all system requirements available here: http://www.mathworks.com/support/sysreq/previous_releases.html...

ungefär 11 år ago | 0

Answered
Unable to load, File may be corrupt
You mention that you are using a cluster. Is it possible that multiple processes are trying to write to the same file simultane...

ungefär 11 år ago | 1

Answered
why does parfor execute loops in a random order?
Just to be clear -- parfor loops are of independent of iteration order, and do not guarantee deterministic results. It's not ra...

ungefär 11 år ago | 1

| accepted

Answered
can I call dosbox from inside matlab?
Does command line redirection to pass an input file via the system command work? Reference : http://technet.microsoft.com/en...

ungefär 11 år ago | 0

Answered
getting string from the command window output
Use system() like this [status,result] = system('your_command.exe'); the output will be in "result" -- you may need to p...

ungefär 11 år ago | 0

Answered
Cluster error: Opening log file
Are you out of disk space? Have you exceeded a disk quota? Looks like you aren't in a normal "home" directory, so there may be ...

ungefär 11 år ago | 0

| accepted

Answered
Can I install MATLAB R2006a on a MacBook Pro with Intel Core 2 Duo processor
* R2006a was supported only on PowerPC. Apple switched to Intel processors and had a transition time where executables would ru...

ungefär 11 år ago | 1

| accepted

Answered
running a linux process in MATLAB
Instead of a variable "flag", why not touch a file touch /tmp/memorylogging then in your script you use the existance of...

ungefär 11 år ago | 0

Answered
How to parallel 4 works with PARFOR with a Core i3 in Matlab
Go to the Parallel menu, then select Manage Cluster Profiles. Select the "local" profile, and change NumWorkers to 4. Keep i...

ungefär 11 år ago | 2

Answered
matlabpool error after java update
There are a variety of workarounds discussed here: http://www.mathworks.com/matlabcentral/answers/62496-java-mac-osx-10-6-upd...

ungefär 11 år ago | 0

Answered
Problem with Rapid Accelerator and Windows Firewall
You should be able to add an exception to the firewall and still keep the firewall running.

ungefär 11 år ago | 0

Answered
Adding user to the license list (Error 39)
Install and licensing support is free of charge ... they should be able to help you out.

ungefär 11 år ago | 0

Answered
How keep running matlab on an another computer via a connection ssh when the connection is closed?
Try using the "screen" utility. You start it on the remote machine after you ssh in and then you can reconnect to the session l...

ungefär 11 år ago | 0

Answered
installing Matlab 2012b on Ubuntu
Installation support is provided free of charge .. might want to give them a call

ungefär 11 år ago | 0

Answered
Using MATLAB Script To Run remote Linux Program via Telnet
You might want to try uing "plink" rather than PuTTY. It's part of the PuTTY suite, so you likely have it already since you've ...

ungefär 11 år ago | 0

| accepted

Answered
Not all CPUs are enabled
If it's a warning, you can suppress it. http://www.mathworks.com/help/matlab/matlab_prog/suppress-warnings.html

ungefär 11 år ago | 0

Answered
how I change the setting of matlab?
Just to be sure -- is the machine with 6 GB RAM a 64-bit operating system? Did you install a 64-bit MATLAB? (It's possibl...

ungefär 11 år ago | 0

Answered
Why does Matlab not allow you to interupt a function mid execution?
If you set a breakpoint in a function the debugger will stop there and you can inspect variables. You can also step in a variet...

ungefär 11 år ago | 0

Answered
Adjusting For loop size
I think you are looking for a while loop rather than a for loop.

ungefär 11 år ago | 0

| accepted

Answered
Improving bubblesort to run faster?
Have you tried using the sort() function?

ungefär 11 år ago | 0

Answered
how can i get speedup via gpu computing
Looking at the specs on the card you have, there are a couple things: * This card has a small number of compute cores (96) ve...

ungefär 11 år ago | 0

Answered
Why does the read function occasionally freeze MATLAB?
When the "freeze" happens, has your machine exhausted the amount of RAM it has and started using virtual memory (aka swap)? You...

ungefär 11 år ago | 0

Answered
how to set cuda path
The way I would go about attempting something like this would be as follows: # Delete *any* CUDA environment variables from...

ungefär 11 år ago | 0

Answered
Running MATLAB efficiently from windows command line for faster "unzip and read" process.
You could start MATLAB, and have it poll a directory for files to process and output. This would save you the startup costs, si...

ungefär 11 år ago | 0

Answered
desactivation of the "MATLAB system error" dialog box ?
I don't know the answer to your immediate question, but I'd suggest that you develop a means of monitoring this machine, as well...

ungefär 11 år ago | 1

Answered
is it faster to load a big file (198MB) once and pass it onto a function in a parfor loop or let the function in parfor loop to load it every iteration?
You might find Edric's FEX submission worth reviewing: http://www.mathworks.com/matlabcentral/fileexchange/31972-worker-objec...

ungefär 11 år ago | 2

Answered
Speeding up code: pre-allocation, vectorization, parfor, spmd....
Check using the Resource Monitor to see if you are swapping to disk while you are running. Given that you say you have enough R...

ungefär 11 år ago | 1

Load more