photo

Karsten Reuß


Ernsting's Family

Last seen: 2년 초과 전 2017년부터 활동

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.

통계

MATLAB Answers

2 질문
9 답변

순위
2,946
of 297,527

평판
20

참여
2 질문
9 답변

답변 채택
50.0%

획득한 표
4

순위
 of 20,454

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 159,075

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Revival Level 1
  • Thankful Level 1
  • Knowledgeable Level 2
  • First Answer

배지 보기

Feeds

보기 기준

질문


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...

거의 6년 전 | 답변 수: 2 | 0

2

답변

답변 있음
Websave 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...

거의 6년 전 | 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...

거의 7년 전 | 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...

대략 7년 전 | 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...

대략 7년 전 | 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, ...

7년 초과 전 | 0

질문


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 ...

7년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
how 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...

대략 8년 전 | 1

| 수락됨

답변 있음
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)...

대략 8년 전 | 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...

대략 8년 전 | 1

| 수락됨

답변 있음
minimum of 4 integers
Do you mean this? smallestnumber=min([3 5 6 7])

대략 8년 전 | 0

| 수락됨