photo

Niles Martinsen


Actif depuis 2012

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

27 Questions
3 Réponses

Cody

0 Problèmes
1 Solution

RANG
6 592
of 300 343

RÉPUTATION
7

CONTRIBUTIONS
27 Questions
3 Réponses

ACCEPTATION DE VOS RÉPONSES
22.22%

VOTES REÇUS
4

RANG
 of 20 926

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
110 882
of 168 172

CONTRIBUTIONS
0 Problèmes
1 Solution

SCORE
20

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Thankful Level 3
  • Solver

Afficher les badges

Feeds

Afficher par

Question


Speeding up nested for-loop
Hi I have the following nested for-loop, containing some if-statements. It is running horribly slow, so I would be very happy...

environ 10 ans il y a | 1 réponse | 0

0

réponse

Question


Precision issues when going from Fortran to Matlab
Hi I have a piece of code written in Fortran that I have now finished writing in Matlab. They do exactly the same calculation...

plus de 10 ans il y a | 1 réponse | 0

1

réponse

Question


Declaring variables with high precision
Hi I have the following piece of code that I have also implemented in Fortran. According to Fortran the variable *Ax(3,6,4)* ...

plus de 10 ans il y a | 1 réponse | 0

1

réponse

Question


discrete deriviative has wrong sign
I have the following MWE that calculates the derivative of a function along the y-direction: x=1:50; y=x; phi = s...

plus de 10 ans il y a | 1 réponse | 0

1

réponse

Question


Solve equation with 1 unknown numerically
I have the following script that defines a function and sets up and equation: H = @(f) sum(log(f)); f = rand(1, 1...

plus de 11 ans il y a | 1 réponse | 0

1

réponse

Question


Generating numbers according to a modified Gaussian
Hi I am trying to generate numbers following a probability-distribution given by the 1D Maxwell velocity distribution, which ...

presque 13 ans il y a | 1 réponse | 0

0

réponse

Question


Nonlinear fit with constraints in R2012b
Hi I am running R2012b and doing nonlinear weighted regression as explained here: http://www.mathworks.se/help/stats/examples...

environ 13 ans il y a | 3 réponses | 0

3

réponses

Question


Nonlinear fit to data with errors in both coordinates
Hi I have a set of data (x, y), where there are measurement errors on both coordinates. These errors are non-constant, and I ...

environ 13 ans il y a | 1 réponse | 0

0

réponse

Question


Solving very stiff system of ODE's
Hi I have the following system of ODEs (a very stiff system!): eoms = @(t,x) [ 3.9e3 + 4.8e4*x(3) - 3.9e3*0.02*...

environ 13 ans il y a | 1 réponse | 0

1

réponse

Question


Solving coupled ODE's by ode45
Hi I have a relatively simple set of coupled ODE's that I am trying to solve by ODE45. The following is the content of the .m...

environ 13 ans il y a | 3 réponses | 1

3

réponses

Question


Remove every second tick on y-axis
Hi I have the following code x=-6:0.1:6; figure(1) plot(x, (1)./(1+4*x.^2), 'b') grid on When I plot this, t...

environ 13 ans il y a | 1 réponse | 0

1

réponse

Question


Evaluating integral numerically using quadgk
Hi I am trying to evaluate the following integral numerically in MatLAB: http://www.scribd.com/doc/100400549/mwe However, ...

environ 13 ans il y a | 1 réponse | 0

1

réponse

A résolu


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

environ 13 ans il y a

Question


Evaluate advanced integral numerically in Cartesian coordinates
Hi I have previously asked a question regarding how to evaluate a specific integral in MatLAB, see this thread: http://mathwo...

environ 13 ans il y a | 1 réponse | 0

0

réponse

Question


Plotting multi valued data properly
Hi Please take a look at my dataset here: <http://peecee.dk/upload/view/377379> It can be plotted using the following ...

environ 13 ans il y a | 1 réponse | 0

1

réponse

Question


Fit parameter not changed
Hi I am trying to fit a function to some data points. My code is the following: clc clear all close all for...

environ 13 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
Evaluate advanced integral numerically
Thanks for taking the time to write all that. That is very kind of you, and it gave me a big push in the right direction. Thanks...

plus de 13 ans il y a | 0

Question


Evaluate advanced integral numerically
Hi I am trying to evaluate the following integral in MATLAB: http://www.scribd.com/doc/100400549/mwe However I haven't had...

plus de 13 ans il y a | 3 réponses | 0

3

réponses

Question


Nonlinear Fitting: Extreme uncertainties on a very good fit
Hi I have some data (x, y) (no uncertainties on either x or y), which very nicely follows an exponentially decaying function....

plus de 13 ans il y a | 1 réponse | 0

1

réponse

Question


Break in the axis
Hi I have a plot of data points (x, y). The issue is that one of the first data points has a very large amplitude, whereas th...

plus de 13 ans il y a | 5 réponses | 1

5

réponses

Question


Changing the vertical errorbar tee
Hi I have the following example x=1:1e1; y=x; e=sqrt(y); figure(1) errorbar(x, y, e, e) What I want is to...

plus de 13 ans il y a | 1 réponse | 0

1

réponse

Question


Linear fit with data uncertainty
Hi Fitting a polynomial in Matlab to some data (x, y) is easy using polyfit as e.g. p_RvsT = polyfit(r_vs_t(:, 1), r_vs_...

plus de 13 ans il y a | 1 réponse | 0

1

réponse

Question


Polyfit and parameter uncertainty
Hi I have some data (x, y), where y is proportional to x. I want to find the relationship, so I fit a function of the form f(...

plus de 13 ans il y a | 1 réponse | 0

1

réponse

Question


Fitting with nlinfit
Hi I am fitting a function to some data using nlinfit in the following way [b, r, J, COVB, mse] = nlinfit(v(:, 1), v(:, ...

plus de 13 ans il y a | 1 réponse | 2

1

réponse

Réponse apportée
Fitting a convolution
Andrei's suggestion works, but when I increase the resolution of x, then the convolution changes as well. Is this just a propert...

plus de 13 ans il y a | 0

Question


Fitting a convolution
Hi I have the following piece of code: ---------------------------------------------------------------------------------...

plus de 13 ans il y a | 2 réponses | 0

2

réponses

Réponse apportée
Fitting data with two peaks
If I use this approach http://www.mathworks.se/support/solutions/en/data/1-GNRWCU/index.html, is there a way to obtain the error...

plus de 13 ans il y a | 0

Question


Fitting data with two peaks
Hi I have some data, which is not too different from the top graph in this picture: http://www.aanda.org/index.php?option=com...

plus de 13 ans il y a | 5 réponses | 0

5

réponses

Question


Normalize data set
Hi I have a data set giving me (time, voltage), and I wish to normalize the data set. Is there a smart way to do this in MatL...

plus de 13 ans il y a | 2 réponses | 0

2

réponses

Question


Fitting in MatLAB
Hi I have a dataset, which I am trying to fit to a function having the form A*cos(a*x) + B*sin(b*x) + C/x + exp(-D*x). ...

plus de 13 ans il y a | 1 réponse | 0

1

réponse

Charger plus