Gesendet


Skymap
SKYMAP An easy to use medium accuracy astronomical starchart, with high-resolution stellar spectra, and a intuitive GUI

fast 6 Jahre vor | 8 Downloads |

0.0 / 5
Thumbnail

Beantwortet
plotting of |y| graph
plot(t,abs(y)) HTH

fast 6 Jahre vor | 0

| akzeptiert

Beantwortet
Integration with both limits variable
Matlab has both a numerical and a symbolic version of the error-function. That will be the answer to your problem. The numeric v...

fast 6 Jahre vor | 0

Beantwortet
Reduce computational time for ODE solver
Have you tried the other ODE-integrating functions? From your problem description it sounds like your ODEs are stiff - for that ...

fast 6 Jahre vor | 0

| akzeptiert

Beantwortet
2D colormaps. MxN matrix of RGB values for 4 colors gradient
If you do something like this: [hsvImg] = rgb2hsv(Imrgb); x_lims = [1 184; 199 383; 397 581; ...

fast 6 Jahre vor | 1

Beantwortet
Integrating min and max function
This might not be the most elegant solution to this, but it's a first stab. Take a quick-look at what the function looks like: ...

fast 6 Jahre vor | 1

Beantwortet
Maximization of a Function
When I create a sequence of functions like that I always have to have the input-variables explicitly visible on the right-hand s...

fast 6 Jahre vor | 0

Beantwortet
Improving the computation speed of loops
When you want to search for ways to optimize your code always run it with the profiler to identify where the time is spent. pro...

fast 6 Jahre vor | 0

| akzeptiert

Beantwortet
Image fusion of 3 images
Perhaps: Im_fused = Im1/3 + Im2/3 + Im3/3; or more generally: w = [1 2 3]; w = w/sum(w); Im_wfused = w(1)*Im1 + w(2)*Im2 + ...

fast 6 Jahre vor | 0

Beantwortet
Legend Color doesn't Match the Curves Color
That's peculiar. What happens if you keep the plot-handle from your calls to semilogy and send that to legend? ph = semilogy(z,...

fast 6 Jahre vor | 0

Beantwortet
Fourier transform of a picture?
Note that the actual Fourier transform is the second row of your equation, while the first factor you can see as a matrix with n...

fast 6 Jahre vor | 1

Beantwortet
Harmonic Oscilation. When I plot f towards time amplitude is increasing I don't know why. It should be constant. what's wrong?
Well if you have an equation of motion you should write it as an ordinary differential equation and solve it with a more ambitio...

fast 6 Jahre vor | 0

| akzeptiert

Gesendet


Varying Point-Spread-Function
This contribution allows the user to apply image-blurring with a spatially varying PSF, and Lucy-Richardson type de-blurring of ...

fast 6 Jahre vor | 9 Downloads |

0.0 / 5
Thumbnail

Beantwortet
Axis not working with loglog
Simple reason: log10(0) is a very small "number". So that is an impossible request. Also when you set the axis limits before plo...

fast 6 Jahre vor | 1

| akzeptiert

Beantwortet
Scaling Multiple Subplots to the Same Scale
A usefult tool to utilize for this is linkaxes - that allows you to something like this: for i1 = 1:many sph(i1) = subplot...

fast 6 Jahre vor | 2

Beantwortet
How can I create a break in the y-axis (looking like a flash; example below)?
There are several options on the File Exchange that claims to do exactly what you want. Have a look: FEX: break axis Tust a la...

fast 6 Jahre vor | 0

Beantwortet
In a random distribution of points in square area how can we determine the density information of points in each region
So this is simply counting the number of points in each region. You can do this "by hand" region-by-region, something like this:...

fast 6 Jahre vor | 1

| akzeptiert

Beantwortet
How can I normalize images in matlab?
Once upon a time I had to make my own versions of histogram equalization because at that time that function in the image process...

fast 6 Jahre vor | 1

Gesendet


contourinflectionpoints
contourinflectionpoints finds inflection-points on contour-lines

fast 6 Jahre vor | 2 Downloads |

0.0 / 5
Thumbnail

Beantwortet
Can't call my function to another m file
If you have your third m-file in another directory and the first directory is not on the matlab-path then matlab will not know a...

fast 6 Jahre vor | 0

| akzeptiert

Beantwortet
Solve first-order ordinary differential equations
Your calculation of grad_xm and grad_ym looks peculiar to me. Since you seem to use x and y for the coordinates of Vm, it seems ...

fast 6 Jahre vor | 1

| akzeptiert

Beantwortet
Satellite Orbit, Friction Acceleration Function
Recently I've good experiences using this tool: RKN1210 - A 12th/10th order Runge-Kutta-Nyström integrator It is sightly differ...

fast 6 Jahre vor | 0

| akzeptiert

Beantwortet
How can I add a zoom in the peak of the curve ?
My prefered tool for this is: on-figure-magnifier - at the moment, my preferences vary since you can find a range of similar too...

fast 6 Jahre vor | 1

Beantwortet
Is there a way to optimise following loop using 1:end notation?
You should get an identical fft in one step if you do this: E1mat = fft(A,[],1); Here the third argument is the dimension of A...

fast 6 Jahre vor | 0

Beantwortet
how to describe this matlab function?
At the commandline prompt type this: dbstop in select1 Then call the function from the commandline: select1 That will open t...

fast 6 Jahre vor | 0

Beantwortet
pcolorm ignores lines of data
The way I've understood pcolor (which I assume pcolorm is a modification of) makes a colour-patch with corners at [x(n,m),y(n,m...

fast 6 Jahre vor | 0

| akzeptiert

Beantwortet
Solving using an ode
You want to integrate your ode for a couple of values of s. To do that you can either create one ode-function for all 6 values o...

fast 6 Jahre vor | 0

Beantwortet
Splines: How to find vector/array from smoothing line (function - csaps), or another function (still using a smoothing parameter)?
For that purpose I used something like this: y_smoothed = fnval(pp, x); If you check out the documentation for Spline postproc...

fast 6 Jahre vor | 1

| akzeptiert

Gesendet


contour_on_surf
3-D contour plot on a surface. Plot a contour on a 3-D surface, for example contour-plot of surface-temperature over a topograph...

fast 6 Jahre vor | 3 Downloads |

5.0 / 5
Thumbnail

Beantwortet
Optimizing calculation in for loop for convolution
This should work: Hea = heaviside(x-tzero); % your shifted Heaviside sliding_gaussian=exp(-(x/sigma).^2); % Gaussian sliding_...

fast 6 Jahre vor | 0

Mehr laden