Beantwortet
Why do colors "gray out" when I save figure as .eps
Ah, from the way your figure looks, it seems the "error-shade" function you use uses alpha-blending - that is colour-patches tha...

etwa 6 Jahre vor | 0

Beantwortet
1-D Transient Heat Conduction With No Heat Generation [FDM] [Crank-Nicholson]
My suggestion is that you add a line: Tall(:,k) = Tb; at the end of your "time-step"-loop. Then after you're done with it all...

etwa 6 Jahre vor | 1

Beantwortet
Transposing matrices of a Dataset
Take a look at the help and documentation of the matlab-function permute. HTH

etwa 6 Jahre vor | 0

Beantwortet
Inversion of block tridiagonal matrices
If you have a small enough problem which is not ill-conditioned just use \, if it is ill-conditioned but you can do an SVD of yo...

etwa 6 Jahre vor | 0

| akzeptiert

Beantwortet
Matlab is installed in ubuntu but i am unable to open it
If you try to execute something like ./matlab from your terminal you tell the shell to run an executable command "matlab" in the...

etwa 6 Jahre vor | 1

Beantwortet
How to find peaks of the given signal and find the phase shift with respect to the Oscillator 1 signal?
If you had regularly sampled data (it doesn't seem so) this would best be done with spectrogram. That would give you the spectro...

etwa 6 Jahre vor | 0

Beantwortet
How to solve the reduced eigenvalue poblem
Have a look at the eig function. It solves for eigenvalues-eigenvectors - also for the generalized eigenvalue-problem you seem t...

etwa 6 Jahre vor | 0

Beantwortet
Plot signal from fits file?
To read data in fits-format you can use fitsread and fitsinfo, but when I try that on an image from SETI-projects web-site I got...

etwa 6 Jahre vor | 0

Beantwortet
How to make a plot with x-axis that has different scales on different specific regions?
Either you can use something like set(gca,'xscale','log') if that brings you close enough. If you want to plot on some other ...

etwa 6 Jahre vor | 1

| akzeptiert

Beantwortet
Avoid ''Dot indexing is not supported for variables of this type.'', exist(...) isn't working
If you want to check if a struct has a field your're interested in you should check with isfield, check the help and documentati...

etwa 6 Jahre vor | 0

Beantwortet
editing the JET colormap
You should be able to do something like this: imagesc(peaks(123)) cx = caxis; n_colors = 128 cmp = jet(n_colors); colorbar ...

etwa 6 Jahre vor | 2

| akzeptiert

Beantwortet
How can I check that a newly generated sequence is already in the existing structure list or not?
For example this can be used: intersect([1 2 3;1 3 2;2 1 3;2 3 1;3 1 2],[3 2 1],'rows') % %ans = % % 0x3 empty double matr...

etwa 6 Jahre vor | 0

Beantwortet
2d interpolation from a non-uniform grid
No you can use griddata and scatteredInterpolant. You can do something like this: Zi = griddata(X(:),Y(:),Z(:),Xi,Yi); And you...

etwa 6 Jahre vor | 1

| akzeptiert

Beantwortet
How could I use MATLAB to solve for x with this equation, 0=a*x^(3)+b*x^(-1)+c.
This works perfectly fine: f = @(x ) -58.8*(550) + 0.5*37*0.002377*x.^3.*(0.02+0.062*((2*960)./(0.002377*37*x.^2)).^2); plo...

etwa 6 Jahre vor | 0

Beantwortet
Please help me convert them into a function of theta
When you get such an error, your first action would be to look at the sizes of the variables you use: whos r wab L r theta Nex...

etwa 6 Jahre vor | 0

Beantwortet
ODE 45 range for the variables
If you want to start your ode-integration at an [x,T]-point of [0,298] you have to define your y0 like this: y0=[0 ; 298]; %ini...

etwa 6 Jahre vor | 0

Beantwortet
Matrix product and inversion speed up
My comment still seems relevant. A simple commandline test gives: tic,AA = ones(3e4,2)*(ones(2,3e4)*ones(3e4,1));toc % Elapsed...

etwa 6 Jahre vor | 0

Beantwortet
Getting an unknown error on calculating Standard Deviation.
Your variable v is a uint8. Try: std(double(v)) HTH

etwa 6 Jahre vor | 0

Beantwortet
Evaluate the triple integral and sketch the given solid
Whenever you are faced with a problem to solve start trying to solve it with the methods at hand. 1, You surely know how to do ...

etwa 6 Jahre vor | 0

Beantwortet
How to make a double integration with numerical integration?
Why not use integral2 to integrate over 2-D domains - it can handle, at least, boundaries in the y-direction that are functions ...

etwa 6 Jahre vor | 0

| akzeptiert

Beantwortet
How to show a deformation of a sphere
Keep track of the x, y, and z-lims or the axis-limits. Something like this: tiledlayout(1,2); [X, Y, Z] = ellipsoid(0,0,0,1,1,...

etwa 6 Jahre vor | 0

| akzeptiert

Beantwortet
ODE system with variable parameter, Boundary conditions and domain
This could be done something like this: Dall = {0:0.1:1,0:0.1:2}; % however many domains you need etc Y0 = {[Tt01;Pt01;M01],[T...

etwa 6 Jahre vor | 0

| akzeptiert

Beantwortet
Integrate PDEPE solution wrt x
This rather straightforward method should get the job done (assuming you cannot get away with simply use trapz, or cumtrapz, but...

etwa 6 Jahre vor | 0

| akzeptiert

Beantwortet
How to calculate |x|
abs(x) When you look for functions you should learn about the matlab-command lookfor, have a look at the help and documentation...

etwa 6 Jahre vor | 0

Beantwortet
Curve fitting of two different datasets with two different equations and parameters to compare
This is why I never use the fancy curve-fitting-gui-tool, but do it explicitly with fminsearch or lsqnonlin. That way I have mor...

etwa 6 Jahre vor | 0

| akzeptiert

Beantwortet
How to solve exponential distribution equation using symbolic Matlab?
It helps the int if you explicitly tells what the range to integrate over is: int(f,0,inf) HTH

etwa 6 Jahre vor | 0

| akzeptiert

Beantwortet
Sturm-Liouville eigenvalues calculation
Have you checked the file-exchange contribution: discrete-orthogonal-polynomial. It solves this kind of problems numerically.

etwa 6 Jahre vor | 0

Beantwortet
common tangent of two curves with vpasolve.
In your code you gove starting-points for the variable you search for. Perhaps vpasolve doesn't bother to look for all solutions...

etwa 6 Jahre vor | 0

| akzeptiert

Beantwortet
How to add arrows in plotted curves to point corresponding axis?
There are a number of arrow-contributions on the file exchange. These two are my favourites: arrow3, arrow, other contributions ...

etwa 6 Jahre vor | 1

Beantwortet
How to use wiener filter?
If you read the help for deconwnr you see that there is a third input, NSR, for the image Noise-to-Signal-Ratio. Since the Wiene...

etwa 6 Jahre vor | 0

| akzeptiert

Mehr laden