Lukas Netzer
Followers: 0 Following: 0
Estadística
24 Preguntas
0 Respuestas
CLASIFICACIÓN
81.253
of 295.849
REPUTACIÓN
0
CONTRIBUCIONES
24 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
83.33%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.292
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 154.677
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
Trying to replace for loop with faster code
I have the following code in a rather large script, which unfortunately is VERY slow: for x = 1:size(table1) for y = 1:siz...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Replace loop with more efficient procedure to make it faster
So I'm running this loop: for n = 1:size(table1) for m = 1:size(table2) if table1.WP1(n) == table2.WP1(m) && tabl...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Matching ranges of values and inserting new rows in columns
Following a previous question, I now need to dive a little deeper: I have two tables (workspace is attached): table1 contains ...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Matching columns of two different tables with different tablesizes
I have two tables (attached): In table1 I have two columns called WP_1 and WP_2. In table 2 I have three columns called WP1, W...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Using index to match rows of table
I have an Index: index = [1;3;7;10;15;17;20]; I want to use that index to access rows in table 1: table1.WP1 = [1;8;17;24;26;...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Insert new row with values in a table before specific values
Hey, I have a table with 3 columns containing the following values: Now I want to insert a new row with (0,0,0) everytime WP...
más de 3 años hace | 2 respuestas | 0
2
respuestasPregunta
replace specific commas using strrep
I converted my data: '[[0, 145, 0], [145, 169, 1], [169, 1693, 3], [1693, 1708, 1], [1708, 2729, 3], [2729, 2779, 0]]' using s...
más de 3 años hace | 2 respuestas | 0
2
respuestasPregunta
Remove Curly brackets from string/array - what am I working with?
I have acutally no clue what I am working with. I got tables containing i.e. the following: '[[0, 145, 0], [145, 169, 1], [1...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Remove String and extract numbers to move to new column
I have a column like that: WPS "[0, 0]" "[0, 5]" "[5, 115]" "[115, 219]" "[219, 262]" "[262, 328]" "[328, 408]" "[408, ...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Error using bar when plotting from variables
I'm trying to plot with the following code: w1 = 0.5; x = [1 2 3 4] y1 = [C1a, C1d, C2a, C2d] y2 = [C1aO, C1dO, C2aO, C2dO] ...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Plotting content from structure
Hey, I am trying to plot values from a structure but somehow am getting Error using startswith. Here is the code (examplified)...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
If-condition: if number is +-5% of another
I'm trying to set an if-condition like that: for x = 1:1:size(t{n}) if t{n}.sh(x) = +-0.05 t{n}.DiffMileagekm(x) %here is wher...
más de 3 años hace | 2 respuestas | 0
2
respuestasPregunta
Using index to name variables
I'm running a script with a index containing: t{1} = Location1; t{2} = Location2; t{3} = Location3; tt{1} = "Location1"; ...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
index in safe-title
I would like to define my file with the title, so that includes the according index. I tried: saveas(gcf,'title_t{n}','jpeg') ...
más de 3 años hace | 2 respuestas | 0
2
respuestasPregunta
Conversion operators error!
I'm trying to set my xTicklabels: set(gca, 'xtick',1:8,'XTickLabels',compose('diffNA2l','diffNA2h','diffA2l','diffA2h','allNA2h...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Have index of numbers and letters in title
I try to setup the title for one of my boxplots to use an index like that: t{n} = abc123abc; I tried using: title('title', ...
más de 3 años hace | 2 respuestas | 0
2
respuestasPregunta
Customize tick values in boxplot
Hey, I have the following boxplot: Instead of 1, 2, 3 on the x-axis I want to have 50kW, 150kW, 300kW - I tried changing tic...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Rerun script with different table input
Hey, I wrote quite a long script, that uses table data, like so: Location = table1.Location; Is there a way to replace "table...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Print output if elements of a list match values in a column
I have a column/list of values A: 1 2 3 4 5 6 7 8 9 10 And an according list/column of values B: A B C D E F G...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Using unique-function - show amount of times unique value was found
Hey, I am using: [C, ia, ic] = unique(Location); Now I get a list of unique Locations in Location but am actually looking for...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Get distribution percentages of list of values
I have a list of values: x = 185726 49585 10342 13788 3656 18303 120647 9627 20600 5035 102547 48199 130645 4809...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
Using unique-function to add up values
Hey guys, I am splitting a column according to it's unique values: [C, ia, ic] = unique(Location) Which gives me (examplified...
más de 3 años hace | 2 respuestas | 0
2
respuestasPregunta
Keep y value below certain value in a loop
Hey, I am trying to run a function, where y can never be below zero and never above Capacity. The function looks like that: r...
más de 3 años hace | 2 respuestas | 0
2
respuestasPregunta
Generate new column from cumulating another
Hey, I am trying to cumulate the values in a table's column and generate a new column with those values. The Table has 2734 li...
más de 3 años hace | 1 respuesta | 0