Respondida
how to project an image stack in time dimension?
It should be as simple as: %% I just do this for all files in the same directory, you'll have to fix file-finding... fNa...

alrededor de 10 años hace | 0

| aceptada

Respondida
How to add wind direction to image
Perhaps it is as simple as a swap of latitude and longitude coordinates? HTH

alrededor de 10 años hace | 0

Respondida
Finding the fitting equation
After reading your previous question about this your first line of action is to read some introduction to matlab/getting starte...

alrededor de 10 años hace | 1

| aceptada

Respondida
how to preallocate the variable in matlab code?
It is often simple, sometimes tedious other times impossible to preallocate the exact size of your variables. In this case I can...

alrededor de 10 años hace | 1

Respondida
how can I plot diffracted filed in polar coordinate?
Perhaps you want to plot the amplitude of the field? If so just change et=(10*log10(e0*e1*e2*e3*e4)) to ab_et=(10*log...

alrededor de 10 años hace | 0

| aceptada

Respondida
How to filter out pornographic images using MATLAB?
Instead of continuing the discussion on a principal level I suggest that you try this fex-submission that might give you a hands...

alrededor de 10 años hace | 0

Respondida
Inner matrix dimensions must agree and too many input variables
At the command-line prompt do this: >> dbstop if error That makes matlab stob inside the function that gives you the e...

más de 10 años hace | 0

Respondida
How to show all jpg images saved in MATLAB folder?
Perhaps one of the submissions creating thumbnails (into tables guis or the like) found on the file exchange does what you want:...

más de 10 años hace | 1

Respondida
I need to deconvolve the image of a fluorescent bead without the Point Spread Function in MATLAB
Well, if I understand you right, the claim is that the image of your bead is an image of the point-spread-function of your imagi...

más de 10 años hace | 0

Respondida
how to write a function that multiplies any 2 matrices that are of compatible size by using nested for loop?
You simply do something along these lines: for i1 = 1:size(M1,1) for i2 = 1:size(M2,2), Res(i1,i2) = M1(i1,i2) ...

más de 10 años hace | 0

Respondida
Problem with Contour command
First you should have a look at the <http://www.mathworks.com/matlabcentral/fileexchange/38858-contour-plot-for-scattered-data t...

más de 10 años hace | 0

Enviada


Imthumb
Imthumb - image-thumbnail gallery with lightweigth image display/analysis tools

más de 10 años hace | 1 descarga |

0.0 / 5
Thumbnail

Respondida
Triple correlation and bispectrum
Perhaps you can modify any of the tools that appear when one searches for bispectrum at the File Exchange: <http://www.mathwo...

más de 10 años hace | 0

Respondida
How to filter certain points out of a 3D point cloud?
Assuming that xyzPoints are an [nPoints x 3] array you might do this: xyzPoints(xyzPoints(:,3)==0,:) = []; HTH

más de 10 años hace | 0

| aceptada

Respondida
How to overcome error Matrix dimenssioms Must Agree?
Your arrays xcylinder, ycylinder and zcylinder are 1-D, and surface expects 2-D arrays, to reformat your x,y,z into 2-D you hav...

más de 10 años hace | 0

Respondida
Transformations of a plane
Well first you'd better put your coordinates in a 2-D array: r_Corners = [1 1; -1 1; -1 -1; 1 -1]'; Then you'd make yo...

más de 10 años hace | 0

Respondida
How can a hermitian symmetry apply on the image? For example Below image
Start by reading up on what Hermitian symmetry is: <https://en.wikipedia.org/wiki/Hermitian_matrix Hermtian Matrix> Then l...

más de 10 años hace | 0

Respondida
Is there a way to control distortion in Matlab's 3D viewer?
Matlab uses only a pinhole camera model for their 3-D rendering in the perspective mode, and pinhole cameras has strictly speaki...

más de 10 años hace | 0

Respondida
what is the relationship between noise and outliers ??
Outliers are (very loosely speaking) noise with very large deviations from the expected values. This might be because your noise...

más de 10 años hace | 0

Respondida
How to rconstruct image using eigenvectors and eigenvalues?
I find it easier to work with the SVD-decomposition instead of the eigenvalue-decomposition. Since your matrix is not symmetric ...

más de 10 años hace | 0

| aceptada

Respondida
How to get the values of AIC (Akaike Information Criteria), BIC for selecting the best distribution among different distributions fitted to a data?
There are a couple of contributions at the file exchange: <http://se.mathworks.com/matlabcentral/fileexchange/49886-allregres...

más de 10 años hace | 0

Respondida
is there any builtin function or matlab code available for image inpainting
Have a look at these two functions on the file exchange: <http://se.mathworks.com/matlabcentral/fileexchange/4551-inpaint-nan...

más de 10 años hace | 0

| aceptada

Respondida
finding coordinates of specific pixel using pixel value ?
Try: help find Then you should see that [i1,i2] = find(I==250); Or if your image is in some double precision for...

más de 10 años hace | 1

Respondida
How fit a parameterised ode solution to experimental data
In addition to that this might be a possible solution provided you have access to the system identification toolbox: <http://se...

más de 10 años hace | 0

Respondida
How to detect differencens between 2 vectors that are sorted?
Surely this answer is what your teacher want you to learn: setdiff(B,A)

más de 10 años hace | 1

| aceptada

Respondida
Why is permission denied to save workspace variables?
Perhaps you don't have write permissions in the directory where you try to save the results. In that case it might be for a good...

más de 10 años hace | 0

| aceptada

Respondida
Edge Spread Function Calucaltion
Yes, you can take a look at blind deconvolution, matlab's function deconvblind does this. In my experience the success of that m...

casi 11 años hace | 0

Respondida
How it is possible to sum these two matrix as a vector?
Since you have hats on i and j I assume they are column vectors, then your function might very well look something like this ...

casi 11 años hace | 1

Respondida
Which plot do I need?
Well if you really want a surface-type plot look at trisurf and possibly TriScatteredInterp, if you prefer to first reinterpolat...

casi 11 años hace | 0

Respondida
a saw-shaped IFFT in matlab
I think that the problem you have is that your frequency coordinates are defined without 0 when you calculate fmn - this means t...

casi 11 años hace | 0

Cargar más