photo

Snoopy


Last seen: 3 Monate vor Aktiv seit 2015

Followers: 0   Following: 0

Nachricht

Programming Languages:
MATLAB
Spoken Languages:
English
Pronouns:
He/him

Statistik

MATLAB Answers

39 Fragen
8 Antworten

RANG
7.843
of 300.343

REPUTATION
6

BEITRÄGE
39 Fragen
8 Antworten

ANTWORTZUSTIMMUNG
66.67%

ERHALTENE STIMMEN
6

RANG
 of 20.926

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 168.149

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

  • Thankful Level 4
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


Making random to work like randi
I have this code idx = randi(N_clusters,N_clusters,1); but I want to use the random function to achieve the same output. I do...

3 Monate vor | 2 Antworten | 0

2

Antworten

Beantwortet
Automatic line selection bug
Why not make this optinal. I do not get what this huge white space is for...

11 Monate vor | 0

Beantwortet
Automatic line selection bug
Technical Support's reply: "Unfortunately, this behavior is not a bug. This is an enhancement and intentional change made in R20...

11 Monate vor | 0

| akzeptiert

Frage


Automatic line selection bug
When I click on a line in the Editor and scroll the mouse cursor up or down, MATLAB automatically selects and highlights across ...

11 Monate vor | 3 Antworten | 0

3

Antworten

Frage


Can the random function accommodate the randi function?
I am using randi([0,1],[N,1]); to randomly generate 0s and 1s. If I am not mistaken, the random function is replacing the...

11 Monate vor | 2 Antworten | 0

2

Antworten

Frage


Is giving a space after comma in functions the convention?
I more often see y = pdf('t', x, df); than y = pdf('t',x,df); That is, people often give a space after comma when writing t...

etwa ein Jahr vor | 3 Antworten | 0

3

Antworten

Frage


How does MATLAB generate the probability density function?
I am using the pdf function (https://nl.mathworks.com/help/stats/prob.normaldistribution.pdf.html) to just visuilize the pdf of ...

etwa ein Jahr vor | 2 Antworten | 0

2

Antworten

Beantwortet
What are the specifics of MATLAB home license?
To determine which add-ons cannot be used on Home license, - go to https://nl.mathworks.com/pricing-licensing.html?prodcode=ML...

etwa 2 Jahre vor | 0

Frage


What are the specifics of MATLAB home license?
I would like to ask two quesitons. First, I am trying to understand the difference between home and professional version of MATL...

etwa 2 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Why does the table command change display format?
I set the display format to "short" because I want that 4 digits are shown after the decimal point, like 0.3124. I crate a "tabl...

mehr als 2 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Saving a structure array, not fields of it
I have a structure array called s1 in the Workspace. I want to save it as it is so that when I load it, I want to see just s1 in...

mehr als 2 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Why DerivativeCheck would be allowed to be on while there is no GradObj?
When GradObj is off, and DerivativeCheck is on, fmincon starts to run without any error or warning. Why would this be the case? ...

mehr als 2 Jahre vor | 4 Antworten | 2

4

Antworten

Frage


Why does an array have a different column dimension than the array used to define that array?
I enclose a m file and a small data file. A is a column array with dimension 3233 by 1. B is a column array defined using A and ...

fast 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Right-hand text limit does not appear in script file
I have several script files. In some the right-hand text limit appears while in few others it does not. When I delete some code ...

fast 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


MATLAB Add AWS Credentials error
I am trying to setup an AWS account within MATLAB. I get the error in the enclosed screenshot. Can anyone help?

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Do I need to initiate the parallel computing toolbox for my code to run on multiple cores?
I have a function that I minimize using fmincon. I am exploring the possibility of making my code run faster. I got rid of all f...

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Why Halton draws do not lead to standard normal draws?
fun.m is a function generating Halton draws and standard normal draws based on that. Copyright information: the function is a si...

mehr als 3 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Why does my objective function return complex?
I have a likelihood function that I need to minimize. I use fmincon to search for the minimum. Iterations of fmincon sometimes s...

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Can this for loop be vectorized?
The for loop below runs over the third dimension (page) to fill the alpha array. Is it possible to vectorize this for loop? al...

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Can MATLAB be made cheaper?
I use MATLAB intensively for econometric research but also teaching. There is an increasing pressure or recommendation from both...

mehr als 3 Jahre vor | 2 Antworten | 1

2

Antworten

Beantwortet
Is it possible to publish MATLAB code that can be executed online?
I managed to publish my code as html. Please see https://matlab.mathworks.com/users/mwa0000001754528/Published/html/exercisesims...

fast 4 Jahre vor | 0

Frage


Histogram of overlaid standard normal draws
The code below overlays histograms of two sets of standard normal draws. I also attach the graph itself. These draws are based o...

etwa 4 Jahre vor | 1 Antwort | 1

1

Antwort

Frage


fmincon and the Objective function returned NaN warning
I minize the negative of a log-likehood function to estimate the parameters of a mixed logit regression model. I use fmincon to ...

etwa 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


GlobalSearch and fmincon options
I use GlobalSearch for minizing a function. I use fmincon as the solver. Does using fmincon as the solver mean that I can make u...

etwa 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Lower and Upper bounds in GlobalSearch
I am maximizin a log-likelihood function in an empirical econometric research to estimate a mixed logit model. For this purpose ...

etwa 4 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Generating independent Halton sequences in same session
I would like to create two Halton sequences which should be independent of each other. I use the code below. I am worried that t...

etwa 4 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


10 raised to the power
When I multiply two matrices element wise (which is probably not important to my question), some numbers appear as 3.40000000000...

etwa 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Size of the unique elements and size of the output of accumarray
Why are the sizes of the two arrays, unique and accumarray, not the same? size(unique(MAT(:,1))) size(accumarray(MAT(:,1),MAT(...

etwa 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Is it possible to publish MATLAB code that can be executed online?
I have simple .m file. It contains a simulation that demonstrates the law of large numbers with a figure. What I want to do is t...

etwa 5 Jahre vor | 2 Antworten | 1

2

Antworten

Frage


Link to MATLAB documentation
In the MATLAB documentation, the "random" function is explained here https://nl.mathworks.com/help/stats/prob.normaldistribution...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Mehr laden