已回答
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

13 years 前 | 1

| 已接受

已回答
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...

13 years 前 | 0

已回答
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...

13 years 前 | 0

已回答
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...

13 years 前 | 0

已回答
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...

13 years 前 | 1

已回答
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...

13 years 前 | 1

| 已接受

已回答
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...

13 years 前 | 0

已回答
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...

13 years 前 | 0

已回答
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 ...

13 years 前 | 0

| 已接受

已回答
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...

13 years 前 | 1

| 已接受

已回答
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...

13 years 前 | 0

已回答
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...

13 years 前 | 2

已回答
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...

13 years 前 | 0

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

13 years 前 | 0

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

13 years 前 | 0

已回答
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...

13 years 前 | 0

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

13 years 前 | 0

已回答
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 ...

13 years 前 | 0

| 已接受

已回答
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

13 years 前 | 0

已回答
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...

13 years 前 | 0

已回答
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...

13 years 前 | 0

已回答
Adjusting For loop size
I think you are looking for a while loop rather than a for loop.

13 years 前 | 0

| 已接受

已回答
Improving bubblesort to run faster?
Have you tried using the sort() function?

13 years 前 | 0

已回答
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...

13 years 前 | 0

已回答
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...

13 years 前 | 0

已回答
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...

13 years 前 | 0

已回答
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...

13 years 前 | 0

已回答
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...

13 years 前 | 1

已回答
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...

13 years 前 | 2

已回答
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...

13 years 前 | 1

加载更多