回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 0

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

13年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 1

| 採用済み

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 0

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

13年以上 前 | 1

回答済み
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 ...

14年弱 前 | 2

回答済み
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 ...

14年弱 前 | 0

| 採用済み

回答済み
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...

14年弱 前 | 0

回答済み
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...

14年弱 前 | 0

回答済み
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...

14年弱 前 | 0

回答済み
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...

14年弱 前 | 2

回答済み
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...

14年弱 前 | 0

回答済み
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...

14年弱 前 | 0

回答済み
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. ...

14年弱 前 | 0

| 採用済み

回答済み
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...

14年弱 前 | 0

回答済み
MATLAB Warning message
I bet there's a pathdef.m hanging around that's being pulled in.

14年弱 前 | 0

| 採用済み

回答済み
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...

14年弱 前 | 0

回答済み
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年弱 前 | 0

さらに読み込む