![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/9284004_1484848120330.jpg)
Karsten Reuß
Ernsting's Family
Followers: 0 Following: 0
I'm a Data Scientist and economist who enjoys to work with MATLAB. I use it for econometrics, simulation models and time series forecasting. I also use R a lot.
Estadística
2 Preguntas
9 Respuestas
CLASIFICACIÓN
2.935
of 297.016
REPUTACIÓN
20
CONTRIBUCIONES
2 Preguntas
9 Respuestas
ACEPTACIÓN DE RESPUESTAS
50.0%
VOTOS RECIBIDOS
4
CLASIFICACIÓN
of 20.419
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 157.725
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
Websave on csv returns empty file
I am trying to download a file with websave. While downloading the csv with my browser works fine, websave returns an empty csv...
casi 6 años hace | 2 respuestas | 0
2
respuestasWebsave on csv returns empty file
I found one workaround. web('http://stooq.com/q/d/l/?s=^aor&d1=20190303&d2=20190405&i=d', '-browser') Then Firefox (my standar...
casi 6 años hace | 0
In fitglm, how can I have a predictor as both categorical and ordinal?
Ordinal variables in Matlab can be handeled by mnrfit. Here's the theoretrical part: <https://de.mathworks.com/help/stats/mu...
más de 6 años hace | 0
How can I generate all possible combinations of a given number of vectors?
There are several commands you may try, depending on if you want replacement/no replacement/ ordering matters or not, One com...
casi 7 años hace | 1
Does fitrlinear return linear regression model or svm regression model
It fits both, depending on if you specify 'Learner','leastsquares' or 'Learner','svm' Anyways, fitrlinear has so many dif...
alrededor de 7 años hace | 0
speed up xlsread
Small update on this one: In versions of Matlab newer than 2013, readtable is much faster. I had some 300 files to import, ...
alrededor de 7 años hace | 0
Pregunta
stepwiselm: Can I limit the maximum number of variables to a fixed integer?
I'm using stepwiselm: stepwiselm(X,y,'constant','Upper','quadratic','Criterion','adjrsquared') I want my model to include ...
más de 7 años hace | 1 respuesta | 0
1
respuestahow to combine the result of 3 loops in one cell array with 2 dimensions?
If I understand your question correctly it can be done like this: You can rearrange the dimenstions of B after the loops with co...
alrededor de 8 años hace | 1
| aceptada
Using for loops to find values of n
1. your r is never eqal to n, because n is a single number and r is a vector. 2. your code only works when you put round(r(s)...
alrededor de 8 años hace | 1
Plotting from mat file
If you want only first and second month in your variables you can do this: POSTAJE_CLM_hvar(POSTAJE_CLM_hvar(:,2)<3,:) Alt...
alrededor de 8 años hace | 1
| aceptada
minimum of 4 integers
Do you mean this? smallestnumber=min([3 5 6 7])
alrededor de 8 años hace | 0
| aceptada