Answered
MATLAB not starting anymore: MATLAB: No such file or directory
I'm guessing that your home directory is on an NFS partition. Make sure that the mount is not hung/stale, and that files are ac...

13 years ago | 1

Answered
How can I run a .m-file with an endless loop and use the command window at the same time?
Ideas: * Run multiple MATLAB sessions. One with the GUI, the other doing something else. This assumes that the something el...

13 years ago | 0

Answered
Using Matlab on Netbooks
Things that are awesome about netbooks: * Battery life * Portability * Low cost Things that aren't awesome about netbook...

13 years ago | 0

| accepted

Answered
Why isn't my entire processor being used/utilized when I execute a script file?
Are you using functions from the Parallel Computing Toolbox like parfor, spmd, jobs/tasks, batch, etc? Is your code doing som...

13 years ago | 1

| accepted

Answered
Accessing MLM on ubuntu 12.04 from a windows client
* Does the corresponding server license file (on the license server) have the port=1049 addition to the DAEMON line? * Is port ...

13 years ago | 0

Answered
As a Software Engineer, Why should I use MATLAB?
As a software engineer, you will be expected to use the tools, procedures and review processes of the organization which employs...

13 years ago | 1

Answered
Unable to install license file. C:\ Program Files\ MATLAB\ R2010b (Access is denied) getting this error what i have to do
Sounds like one of the following: * You do not have Administrator rights on the machine * You are not running the installati...

13 years ago | 0

Answered
problem with mcde R2010a
It sounds like your installations are not complete. Did you install the MDCE feature when you installed MATLAB? It's separate ...

13 years ago | 0

Answered
error using matlabpool
The local scheduler should work without any additional setup. I'd suspect that your installation is corrupted or your machine e...

13 years ago | 0

Answered
Rights on files using the MDCS
Take a look at using Security Level 3, as described in this document: http://www.mathworks.com/help/toolbox/mdce/bsohksu-1.ht...

13 years ago | 0

Answered
Slightly off topic: determining at the Windows system level when my process is done
It's going to be very difficult to detect "done-ness" programmatically if the process is already started. Some variation of Geo...

13 years ago | 0

Answered
Matlab installation problem
Some products do not create the shortcuts automatically when you install them. I know MDCS is one of them, but I believe there ...

13 years ago | 0

Answered
matlab default directory
Look at the properties of the shortcut that starts MATLAB (select the icon, right click, properties). There is a field called "...

13 years ago | 0

Answered
How to generate an artificial dataset??...
This depends on what you need in your data set. You could use functions like ones, zeros, rand, magic, etc to generate things. ...

13 years ago | 0

Answered
parrallel computation,4-core machine
Things to know about performance of code: # You need to know how many cores you really have. If you have a machine with "hyp...

13 years ago | 0

| accepted

Answered
tcp/ip communcation in linux
Does your Linux machine have a firewall running, or something like SELinux enabled, that will also block ports? You could need ...

13 years ago | 0

Answered
Multi-Threading
Have you looked at the Parallel Computing Toolbox? http://www.mathworks.com/parallel-computing/ There is a command in the ...

13 years ago | 1

Answered
Google drive/docs support
From what I can tell, the Google drive is presented to the machine as another folder when you have the Google Drive application ...

13 years ago | 2

Answered
ga does not use all the available workers
My first suspicion is that you have have 20 (real) cores available to do the work, so you end up essentially queuing the second ...

13 years ago | 0

| accepted

Answered
current directory on startup
If you are using a deployed application, you might also find value in the ctfroot: http://www.mathworks.com/help/toolbox/comp...

13 years ago | 0

Answered
current directory on startup
Could use you "matlabroot" to determine the directory of the .exe and then fullfile and cd to get where you wanted to go? There...

13 years ago | 0

Answered
Shortcut in folder to start program
Assuming you mean Windows, the Start menu and toolbar (and Desktop) are already folders, and yes, you can create a shortcut pret...

13 years ago | 0

Answered
Matlab slows down when writing to large file
You are waiting on disk I/O in this case. I'm not surprised that performance drops off when the file reaches 22 GB. That's a p...

13 years ago | 2

Answered
Matlab extract url from html source
I would do this using a series of regular expressions. Take a look at "Parsing Strings with Regular Expressions" on the followi...

13 years ago | 0

Answered
system('shutdown /r')
*NOTE: THIS IS A GIANT SECURITY HOLE SINCE YOUR PASSWORD WILL BE STORED IN PLAIN TEXT IN THE REGISTRY. USE AT YOUR OWN RISK AN...

13 years ago | 0

Answered
Parallel computing unix scripts using MATLAB parallel computing toolbox
There are some example scripts to integrate with SGE that ship with MATLAB. Check out <matlabroot>/toolbox/distcomp/examples. ...

13 years ago | 0

| accepted

Answered
Low end machine for CUDA particle systems
If you are going to use Parallel Computing Toolbox, you need a card with a compute capability of 1.3 or better (this means doubl...

13 years ago | 0

Answered
MATLAB Warning message
I bet there's a pathdef.m hanging around that's being pulled in.

13 years ago | 0

| accepted

Answered
How to use the full CPU-power at a workstation?
Before beginning any sort of optimization effort, have you profiled your code to know where the slow parts are? I'd also sugg...

13 years ago | 0

Answered
gpuDevice Crashing Matlab
What distro? What version of MATLAB? 64 or 32 bit? If you run "nvidia-smi --query", do you get usable output? How does the...

14 years ago | 0

Load more