CLARK KENDRICK GO
Followers: 0 Following: 0
Statistik
24 Fragen
0 Antworten
RANG
26.787
of 295.527
REPUTATION
1
BEITRÄGE
24 Fragen
0 Antworten
ANTWORTZUSTIMMUNG
50.0%
ERHALTENE STIMMEN
1
RANG
of 20.242
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 154.057
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
performing logistic regression with categorical predictors
Hello, I am performing a logistic regression with 3 numerical predictors AND 2 categorical predictors. These are my X's. My Y ...
mehr als 4 Jahre vor | 1 Antwort | 0
1
AntwortFrage
extracting information from a boxplot saved as fig
I have a boxplot that is saved as fig. and I do not have the original data anymore. How can I extract the data from this figure?...
mehr als 5 Jahre vor | 1 Antwort | 0
1
AntwortFrage
changing colours of the data points in a biplot
Suppose I have: A = rand(100,5); [coefs,score] = pca(A); biplot(coefs(:,1:2),'Scores',score(:,1:2),'VarLabels',vbls); There...
mehr als 5 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
how to extract error data from a error plot
I have an error plot, and I want to extract the data (x,y, and error values) from this. How do I do this? Thanks
mehr als 5 Jahre vor | 1 Antwort | 0
1
AntwortFrage
how to make subplots with fig files?
I already have fig files and I wanted to combine two fig files into subplot(2,1,1) and subplot(2,1,2). How do I do this?
mehr als 5 Jahre vor | 1 Antwort | 0
1
AntwortFrage
how do you change the colour of the error bars using the dock figure tool?
how do you change the colour of the error bars after finishing plotting (using the plot tool/dock figure tool)?
mehr als 5 Jahre vor | 1 Antwort | 0
1
AntwortFrage
how to read sequence of files that are seemingly random
I am trying to read 1000+ files with the following filename format: myPos_HH_MM_SS_SSS.mat. There seems to be no pattern for HH_...
mehr als 6 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
saving and retrieving sequential files for ease of use.
Hi, I am planning to run a program numerous times (say a thousand times), and I want to save the files sequentially as a mat fil...
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
identifying the elements of a cell
I have a 700x8 cell, with each cell having a matrix 6x2 in size. I want to get the first row of each cell. How do I perform this...
mehr als 6 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
help with minimisation, from a data set
I have a data set of the positions (in x,y coordinates) of n particles per time step. I will call this matrix P which has dimens...
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
using gradient descent to optimise in matlab
Is gradient descent available to use in the optimisation toolbox? I am looking for documentation on how to use it, but failed.
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
adjusting the x,y axes ratios in plot (2d)
I want to adjust the x and y axis such that the graph has an aspect ratio of 1:1 (a square). Also, i want the x- and y-axes to h...
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
multiple colours in a trajectory plot
I have a time series X, which I can plot in x-y plane. plot(X(:,1), X(:,2), 'r.') This gives a red dot colour. What I wan...
mehr als 6 Jahre vor | 2 Antworten | 1
2
AntwortenFrage
fitting a gaussian curve to a bar graph
I wanted to fit a gaussian curve (by specifying a mean and variance) to the following bar plot. How can I do it? And how will kn...
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
replacing items in a matrix
I have a vector: A = 6:2:19; and r = 10; I want to replace the element in A which corresponds to r with nothing. ...
mehr als 6 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
skip counting numbers and including the remainder
I want to skip count 1 to 100 by 4's. So 1:4:100 The output is until 97. I want to include the 100 in the result. ...
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Getting the nonzero mean of each cell element
Hi, I have a cell dot_value (100x100 in size), and I wanted to find the mean of each cell (but only considering the nonzero ...
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
'stacking' 2D graphs on top of each other.
I have multiple 2D graphs (but of different lengths/sizes). I want to stack them together to form a 3D image (not necessarily a ...
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
subscript assignment dimension mismatch solutions
Hello, I am writing into a variable Q(:,:,:) in an iteration. The first iteration stores into Q(:,:,1) a matrix of 463x2. Ea...
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
drawing the velocity vectors (tangents) to a given path
I have a two dimensional path of a particle which I can plot. I wanted to plot ALSO the velocity/tangents to the path (at some p...
fast 7 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
customising the boxplot with data points.
so the default boxplot contains err, a box with a line signifying the mean, and the upper 25 percentile and lower 25 percentile....
fast 7 Jahre vor | 1 Antwort | 0
1
AntwortFrage
please help interpret this input using the filter function
Please help interpret this input/output using the filter function. data = [1:0.2:4]'; windowSize = 5; filter(ones(1,...
fast 7 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
please interpret this result from the filter function
Please help me interpret this result from matlab. The input uses a filter function. data = [1:0.2:4]'; windowSize = ...
fast 7 Jahre vor | 1 Antwort | 0
1
AntwortFrage
filtering and smoothening of acquired data due to noise
I have position data sets acquired from noisy sources and I wanted to filter/smoothen them to rid the effects of noise. The aim ...
fast 7 Jahre vor | 1 Antwort | 0