Tessa Kol
Followers: 0 Following: 0
Estadística
29 Preguntas
3 Respuestas
CLASIFICACIÓN
13.675
of 295.569
REPUTACIÓN
3
CONTRIBUCIONES
29 Preguntas
3 Respuestas
ACEPTACIÓN DE RESPUESTAS
75.86%
VOTOS RECIBIDOS
3
CLASIFICACIÓN
of 20.247
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 154.105
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
Remove successive rows from a table where a specific column value is duplicated
Dear all, I have the following csv-file (see attachement). If I take a sample set from this dataset as an example here: time ...
alrededor de 3 años hace | 2 respuestas | 1
2
respuestasPregunta
Validate gaussian process regression model with leave-one-out cross validation
Dear all, I have a dataset with: X = Torque (the input variable) Y1 = Response 1 Y2 = Response 2 Y3 = Response 3 I want to...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Obtain partial or intermediate (output) results from genetic algorithm
Dear all, I defined a very long function to be optimized by the genetic algorithm. How do I obtain the output of (predict(Mod...
más de 3 años hace | 0 respuestas | 0
0
respuestasPregunta
Multiple y axes with multiple plots on single x axis
Dear all, I tried to plot three y-axis where each y-axis contains two lines. I used the approach described in this post: https:...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Locating point on x-axis where the slope is decreasing
Dear all, I used the following code to plot the angle over time: figure hold on grid on plot(Time, theta,'linewidth',1.5) ...
más de 3 años hace | 2 respuestas | 0
2
respuestasPregunta
Rearrange data plot3 and combine data points
Dear all, The following piece of code creates a 3D plot. Normally I import the mass data from a .csv file, but for convenience ...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Surface plot using fitrpg
Dear all, I tried to make a surface plot of the gaussian process function with the following code: gprMdl = fitrgp(X,Y1,'Kerne...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Plot gaplotdistance in one plot for multiple runs of genetic algorithm
Dear all, With the code below I managed to run the genetic algorithm multiple times. gprMdl2 = fitrgp(X,Y1,'KernelFunction','s...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Index in position 2 exceeds array bounds using crossval
Dear all, I got the following error when using crossval. Error using crossval>evalFun (line 488) The function '@(Xtr,Ytr,Xte)...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Assign values of .mat files into matrix
Dear all, I have multiple .mat files (see attachment). I want to organize the MFR_mod variables within the those .mat files int...
alrededor de 4 años hace | 3 respuestas | 0
3
respuestasPregunta
Classify imported files from multiple folders into cell array
Dear all, I have multiple files located in multiple folders. De main folder I called 'test'. De main folder contains 6 subfolde...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
How to use bayesian optimization?
Dear all, I am trying to find a good way to use bayesian optimization that will give me the optimal simulation parameters that ...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Points inside multiple polygon for contour
I made the following contourplot. Then, I plot discretized points over this plot. I wanted to find the (x,y) coordinates o...
alrededor de 4 años hace | 2 respuestas | 1
2
respuestasVelocity vector plot with empty cell array
Solved it myself with an if else statement, see code below. for i = 1:N_run for t = 1:length(col) if cellfun(@ise...
alrededor de 4 años hace | 0
| aceptada
Pregunta
Velocity vector plot with empty cell array
With the following code I made a velocity vector plot over time. %% Velocity vector plot close all x_cent = mean(X(1,1:2)...
alrededor de 4 años hace | 2 respuestas | 0
2
respuestasPregunta
Convert a non uniform cell array of cell arrays to matrix
I have the following code: %% Loading the data rhoPart = 2540; files = dir(fullfile(uigetdir,'\**\*.data*')); [~,Index] = ...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Devide cell array into unequal length cells based on file name
With the following code I imported all of the .data files. All .data files of simulation 1 are located in folder 1 and all .data...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Use inpolygon command for multiple polygon areas
Dear all, I have some difficulty with assigning points into multiple square polygons. I have data files containing (x,y,z) coor...
alrededor de 4 años hace | 2 respuestas | 0
2
respuestasFind value in another cell array based on condition
Here the code that was succesfull for me: for i = 1:N_run %Number of simulation runs, which is for me 81 simulations s...
alrededor de 4 años hace | 0
| aceptada
Pregunta
Find value in another cell array based on condition
I have a folder containing the following files: Every file has the same format, but for a different time step: First (header...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Error using brace indexing with function hypot
I have a number of data files where every data file is stored in a cell array. Thus, : datac.1 is stored in expData{1,1} at tim...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Indexing arrays of binned data
Dear all, I have a cell array expData of 2745x1 cell. For every cell in this cell array I define the same range (i.e. bins). Th...
alrededor de 4 años hace | 3 respuestas | 0
3
respuestasPregunta
Error using accumarray in for loop with cell array
I am having trouble with using accumarray in a for loop. Hers is my code so far: for i = 1:length(files) % Define the rang...
alrededor de 4 años hace | 0 respuestas | 0
0
respuestasGroup discretized data and determine mean
I found the solution myself. Here is an example for a single data file: mean = accumarray(disc_x{1,1}(:,1), expData{1,1}(:,2),[...
alrededor de 4 años hace | 0
| aceptada
Pregunta
Group discretized data and determine mean
Dear all, With help of the community I discretized my data, x-coordinates of particles, into bins. For every bin I want to take...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Setup an optimization problem using Bayesian Optimization
Dear all, Problem:I try to find the optimal set of variables using Bayesian optimization. Before I go further into the depth,...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Import range of files based on file name
I have a folder containing around 300,000 files. I don't need to import all the files. Problem: How can I import a range of fi...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Import files based on file name
I have a folder containing around 300,000 files. I don't need to import all the files. Problem: How can I import the files base...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
How to use gaussian process regression to find the optimal set of parameters?
In a physical experiment I measured some outcome A. Then I set up a simulation of the experiment where I vary two parameters B ...
alrededor de 4 años hace | 1 respuesta | 1
1
respuestaPregunta
Open multiple files from the same folder with fopen and textscan
In matlab I wrote the following code: fid = fopen('LedgeTest_muSP_0.20_muRP_0.20.data.852','r'); % Read all the data from the ...
más de 4 años hace | 2 respuestas | 0