Answered
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 ago | 1

Answered
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 ago | 0

| accepted

Answered
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 ago | 1

| accepted

Answered
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 ago | 1

Answered
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 ago | 1

| accepted

Answered
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 ago | 0

Answered
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 ago | 1

Answered
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 ago | 0

Answered
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 ago | 0

Answered
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 ago | 1

Answered
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 ago | 7

| accepted

Answered
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 ago | 2

| accepted

Answered
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 ago | 2