Risposto
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...

oltre 13 anni fa | 1

Risposto
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...

oltre 13 anni fa | 0

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

oltre 13 anni fa | 0

| accettato

Risposto
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...

oltre 13 anni fa | 1

| accettato

Risposto
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 ...

oltre 13 anni fa | 0

Risposto
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...

oltre 13 anni fa | 1

Risposto
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...

oltre 13 anni fa | 0

Risposto
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 ...

oltre 13 anni fa | 0

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

oltre 13 anni fa | 0

Risposto
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...

oltre 13 anni fa | 0

Risposto
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...

oltre 13 anni fa | 0

Risposto
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 ...

oltre 13 anni fa | 0

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

oltre 13 anni fa | 0

Risposto
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. ...

oltre 13 anni fa | 0

Risposto
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...

oltre 13 anni fa | 0

| accettato

Risposto
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 ...

oltre 13 anni fa | 0

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

oltre 13 anni fa | 1

Risposto
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 ...

oltre 13 anni fa | 2

Risposto
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 ...

oltre 13 anni fa | 0

| accettato

Risposto
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...

oltre 13 anni fa | 0

Risposto
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...

oltre 13 anni fa | 0

Risposto
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...

oltre 13 anni fa | 0

Risposto
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...

oltre 13 anni fa | 2

Risposto
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...

quasi 14 anni fa | 0

Risposto
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...

quasi 14 anni fa | 0

Risposto
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. ...

quasi 14 anni fa | 0

| accettato

Risposto
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...

quasi 14 anni fa | 0

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

quasi 14 anni fa | 0

| accettato

Risposto
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...

quasi 14 anni fa | 0

Risposto
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...

quasi 14 anni fa | 0

Carica altro