Kelly McGuire
Followers: 0 Following: 0
Statistik
RANG
286.830
of 295.467
REPUTATION
0
BEITRÄGE
25 Fragen
3 Antworten
ANTWORTZUSTIMMUNG
68.0%
ERHALTENE STIMMEN
0
RANG
of 20.234
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 153.912
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
Animate 2D coordinate plot
I have a list of x,y coordinates for a particle. I would like to animate the plot so it looks like the particle is drawing out ...
mehr als 3 Jahre vor | 1 Antwort | 0
1
AntwortFrage
disp gives wrong format
I was making a program to calculate the vertical displacement and then display a matrix of the time and displacement outputs. Th...
etwa 5 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
Using Two Model Functions With LSQCUREVFIT
My data requires two model functions for the curve fitting. I use one function for the first part of the data, and the second...
mehr als 5 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How to plot LSQCURVEFIT output
I have almost finished writing a program that fits my data using lsqcurvefit and two different functions for different parts o...
mehr als 5 Jahre vor | 1 Antwort | 0
1
AntwortFrage
For Loop Iteration With Part of Vector
I want to use a row vector to index in a for loop. But, I want to switch to a different function when the index reaches a certa...
mehr als 5 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Curve fitting in a for loop?
I haven't tried this before, but I would like to run the code below in a for loop and have all of the data points and fitted c...
fast 6 Jahre vor | 0 Antworten | 0
0
AntwortenData Curve Fitting Not Fitting Third Point?
Fixed the problem. In the second plot, my x(2) was in the wrong term. It should have been brought into the left parthensis. He...
fast 6 Jahre vor | 0
Frage
Data Curve Fitting Not Fitting Third Point?
Any ideas why it appears the third data point is not being fit? xdata = [1;10;100]; ydata = [0;0;0.3]; fun = @(x,xdata)...
fast 6 Jahre vor | 1 Antwort | 0
1
AntwortLSQCURVEFIT Error When Trying To Optimize Parameters
Ok, here is the working code. Apparently, I needed to convert degrees to radians for this least squares computation on the cosi...
fast 6 Jahre vor | 0
| akzeptiert
Frage
LSQCURVEFIT Error When Trying To Optimize Parameters
I am trying to optimize 5 parameters using lsqcurvefite. I keep getting "Array indices must be positive integers or logical v...
fast 6 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
Particles Moving Left Or Right On X-Axis
I just wrote this code to randomly place particles on the x-axis and then randomly assign a velocity so they go right or left....
fast 6 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
Saving for loop output ever iteration
I would like to save the output from the second for loop every iteration so that I can plot it vs the variable G at the end. ...
fast 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
2D Random Walk Please Explain What These For Loops Are Doing
Could someone explain how and what these for loops are doing in the 2D random walk? clc clear all %Ask for number of rive...
fast 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Average trajectory of multiple 2D random walk trajectories
How would I plot the average trajectory of multiple 2D random walk traces constrained between two points? Here is the code I am...
fast 6 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
Duplicate Points In Overlapping Section of Two Overlapping Spheres
I have two overlapping spheres, and I am using the Monte Carlo method to calculate the volume of the combined spheres. Everythi...
fast 6 Jahre vor | 0 Antworten | 0
0
AntwortenMonte Carlo Two Overlapping Spheres
Here is the complete working code: clc clear S=input('Number of Simulations: '); N=input('Number of points: '); fileID ...
fast 6 Jahre vor | 0
| akzeptiert
Frage
Monte Carlo Two Overlapping Spheres
I am trying to estimate the volume of two overlapping spheres using the Monte Carlo method. One sphere (white) is centered at...
fast 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Adding Bias To Random Walk
How would add a bias or probability of 34%, 22%, 22%, and 22% for each of the four directions in the attached random walk code?...
fast 6 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
How do I animate this line plot?
I am trying to make an animated line plot changing based on the number of water molecules at a given amino acid inside an ion ch...
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Plot Circle In For Loop
I have this code that is set up to animate a circle plot based on the circle's diameter. I am struggling with how to plot the c...
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Animating a circle based on diameter data
I have two columns of data. In one is the frame number (which I may convert to time in nanoseconds) and in the other is the dia...
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Program Sudden Errors Appearing
This program I wrote was working just fine, but then upgraded to Matlab 2017 and these errors appear (see pic attachment). My p...
etwa 7 Jahre vor | 1 Antwort | 0
1
AntwortFrage
LSQCURVEFIT Global Fit Unequal Data Question
Ok, so I am trying to do a global fit of multiple traces to obtain 4 parameters. I have 15 traces that I am trying to fit at th...
mehr als 7 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
Not enough input arguments
I am not understanding what is wrong with line 10, which is [a,b] = size(t); function [ diffVec ] = GlobChiSq( p, t, Co, Di...
mehr als 7 Jahre vor | 1 Antwort | 0
1
AntwortFrage
For Loops With Matrices
So, I am trying to perform a global fit on 15 data traces obtained from electrophysiology. The first three traces had a concent...
mehr als 7 Jahre vor | 1 Antwort | 0
1
AntwortFrage
lsqcurvefit not working, large f(x) values during iterations
I am trying to use lsqcurvefit to fit data using a nonlinear function (modelFun in the code), but I just can't get it to work. ...
mehr als 7 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Script runs, but can't see solution
My code is shown below. I am trying to fit my data with an equation we developed. I get a plot at the end of the run with no e...
mehr als 7 Jahre vor | 1 Antwort | 0
1
AntwortFrage
What is generating "Subscript indices must either be real positive integers or logicals" in my code?
I have attached my code. I know the error happens in my mathematical expression, I just don't understand exactly what the error...
mehr als 7 Jahre vor | 2 Antworten | 0