已回答
jpeg image compression
This is a logical statement, let's break it down - english on left, MATLAB on right. if the number of dimensions of x is not...

13 years 前 | 1

已回答
Setting Image Contrast Window Auto
imshow will let you specify high and low when you view the image. Syntax here: imshow(I,[low high]) If you would like to co...

13 years 前 | 0

| 已接受

已回答
minimise two functions simultaneously
It may be brute force. But, I first would try fmincon. fmincon is usually what I try first! You probably have limits for your c...

13 years 前 | 1

| 已接受

已回答
turn off hyperthreading when i'am using Matlab
Depending on your release, you can either turn it off in the preferences - or for newer releases there is a start up option for ...

13 years 前 | 1

已回答
reading string from a cell for importing data
cellfun will probably be the easiest way to do this for you. cellfun will allow you to run a particular function on every eleme...

13 years 前 | 1

| 已接受

已回答
Adding worker to matlab pool without closing?
There is no way to add a worker to an existing matlabpool. You must close it every time.

13 years 前 | 0

已回答
pause job on job manager
It is possible to change the priority of jobs in the queue, if they are not currently running. The commands are promote and dem...

13 years 前 | 1

已回答
Recognition of a comet
From looking at your code, it looks like you are trying to distinquish your comet by finding something fairly white. I am uncert...

13 years 前 | 0

已回答
Interpolation within a 3d array
You can probably use a lot of methods to do this, depending on what your function looks like. If you do not have the optimiza...

13 years 前 | 0

已回答
Change the resolution of an image created/opened with imshow
I think you can solve this by changing the 'InitialMagnification' property to change the magnification used to display the image...

13 years 前 | 1

已回答
Am I inside a parfor?
You can check to see if you are currently running on a worker (aka running in parallel) by using the following commands. ...

13 years 前 | 7

| 已接受

已回答
Parallel Computing
Hello. I would suggest doing the recording in the background using a single MATLAB worker with a single task. You can set up...

13 years 前 | 2

| 已接受

已回答
use the parfor loop and the distributed array together
Hello. You can not use distributed arrays and parfor together. If you only want to use part of the distributed array in each ...

13 years 前 | 2