A répondu
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

environ 11 ans il y a | 1

| A accepté

A répondu
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...

environ 11 ans il y a | 0

A répondu
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...

environ 11 ans il y a | 0

A répondu
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...

environ 11 ans il y a | 0

A répondu
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...

environ 11 ans il y a | 1

A répondu
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...

environ 11 ans il y a | 1

| A accepté

A répondu
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...

environ 11 ans il y a | 0

A répondu
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...

environ 11 ans il y a | 0

A répondu
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 ...

environ 11 ans il y a | 0

| A accepté

A répondu
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...

environ 11 ans il y a | 1

| A accepté

A répondu
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...

environ 11 ans il y a | 0

A répondu
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...

environ 11 ans il y a | 2

A répondu
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...

environ 11 ans il y a | 0

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

environ 11 ans il y a | 0

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

environ 11 ans il y a | 0

A répondu
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...

environ 11 ans il y a | 0

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

environ 11 ans il y a | 0

A répondu
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 ...

environ 11 ans il y a | 0

| A accepté

A répondu
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

environ 11 ans il y a | 0

A répondu
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...

environ 11 ans il y a | 0

A répondu
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...

environ 11 ans il y a | 0

A répondu
Adjusting For loop size
I think you are looking for a while loop rather than a for loop.

environ 11 ans il y a | 0

| A accepté

A répondu
Improving bubblesort to run faster?
Have you tried using the sort() function?

environ 11 ans il y a | 0

A répondu
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...

environ 11 ans il y a | 0

A répondu
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...

environ 11 ans il y a | 0

A répondu
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...

environ 11 ans il y a | 0

A répondu
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...

environ 11 ans il y a | 0

A répondu
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...

environ 11 ans il y a | 1

A répondu
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...

environ 11 ans il y a | 2

A répondu
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...

environ 11 ans il y a | 1

Charger plus