Risposto
Datetime with variable format
Unfortunatelly you cannot specify multiple InputFormats simultaneously. Common to Name-Value pairs is that the last instance of ...

quasi 10 anni fa | 1

Risposto
MATLAB function to perform an unbalanced anova
You can do this with <http://www.mathworks.com/help/stats/anovan.html anovan>.

quasi 10 anni fa | 1

Inviato


Currency Symbols
Retrieve currency symbols from a currency char array.

circa 10 anni fa | 1 download |

0.0 / 5

Risposto
How do I get the course Matlab Fundamentals?
Navigate to the Website, <https://www.mathworks.com/training-schedule/matlab-fundamentals> and you should see a Shopping Cart sy...

circa 10 anni fa | 0

Risposto
Question about the legend command
The problem is not with the legend. You can note that if you keep adding new legend entries, you will get more markers shown: ...

circa 10 anni fa | 1

Risposto
My loop has an infinite recursion, and I'm not sure how to fix it?
You always set _y_ to be the initial guess and call _divide_and_average_ with _y_ which is the initial guess. while boundar...

circa 10 anni fa | 0

Risposto
How do I prevent a stepwise multiple linear regression to include interaction terms?
You are on the right track, it is the Upper input you are looking for: mdl1 = stepwiselm(X,y,'constant','Upper','linear'); ...

circa 10 anni fa | 5

| accettato

Risposto
Specify a color from a relative range of data
Since your colors are really just numeric values, we can perform an interpolation on those numbers using _interp1_: b = [0 ...

circa 10 anni fa | 4

| accettato

Risposto
add each element of one vector to each element of another vector
The essential idea here is that you want a 6x6 output containing the sums of the rows and columns (which will represent die1 and...

circa 10 anni fa | 2

Risposto
How can I add two Gaussian Mixture models?
The quick answer is you cannot. The fitting function needs to estimate the means vectors and covariance matrices for each of the...

circa 10 anni fa | 0

Risposto
How to Create array with repeating values of another array
x = [1 2 3 4 5]; y = repelem(x,2) y = 1 1 2 2 3 3 4 4 5 5

circa 10 anni fa | 3

Risposto
Fix function evaluations in ga
This is controlled in the _Generations_ property of the Genetic Algorithm options. Obtain the default options: >> options ...

circa 10 anni fa | 0

Risposto
Create a matrix (24,72) using 'for' loop.
You could do this with a loop: A = ones(24,72); for k = 1:72 if rem(k,3) == 0 A(:,k) = 0; end ...

circa 10 anni fa | 1

Risposto
Conversion of cell containing numbers into a numerical double?
A = {3;4;5}; % Cell array B = cell2mat(A) % convert to a double. B = 3 4 5

circa 10 anni fa | 1

Risposto
how to replace the following code, to get the matrix
You really just need to make a sparse diagonal matrix. This can very easily be done with <http://www.mathworks.com/help/releases...

circa 10 anni fa | 0

| accettato

Risposto
How to detect if a figure exist?
In 2014b and later you can query whether the Graphics Root objects has any children: g = groot; isempty(g.Children) % Tr...

circa 10 anni fa | 4

| accettato

Risposto
Combining to two Cells
One of the issues you will face here is that what is stored in the cell array _p_ is numeric data and concatenation of numeric d...

circa 10 anni fa | 2

| accettato

Risposto
Getting scores in Naive Bayes and Support Vector Machine
The scores are only the result from using the predict method of the aforementioned classes. They are the second output referred ...

circa 10 anni fa | 0

| accettato

Risposto
Can I use the kstest function to check if the data have a CDF defined by myself?
Yes, if you have a function that calculates the CDF of the distribution you can calculate the CDF at your sample values and pass...

circa 10 anni fa | 0

| accettato

Risposto
Nested / parfor loop issue
a) You must be trying to use parfor on the outer i loop, but this does not allow you to make an assignment to the jth page of Ja...

circa 10 anni fa | 0

| accettato

Risposto
Combining two optimization functions
Your problem is simply that fminsearch is passing only 1 input to the objective function (this is common among optimization rout...

circa 10 anni fa | 0

Risposto
Test significance parameters mvnrmle regression
There is really no reason to be using mvnrmle to fit this model. If you are using 2013b of later I would suggest the use of fitl...

circa 10 anni fa | 0

Risposto
How shall I confirm the significance of week days' Up-Downs for some stock?
Typically one would perform an Analysis of Variance ( <http://www.mathworks.com/help/stats/anova1.html anova1>) on the actual da...

circa 10 anni fa | 0

| accettato

Risposto
getting vertices of patch object after rotation .
p = patch([0 0 0.1 0.1],[0 0.2 0.2 0],'b') p.Vertices or p.XData p.YData Although I'm not sure how you ...

circa 10 anni fa | 0

| accettato

Risposto
how do i apply maximum likelihood estimation for a gaussian distribution?
Maximum Likelihood estimates for a normal distribution would be: mu = mean(K); sigma = std(K,1); % 1 for population stan...

circa 10 anni fa | 1

Risposto
How to predict output values of new data in stepwise regression?
rng('default') % Reproducibility n = 200; % 200 samples % Generate some data which is quadratic x = 4*(rand(n,1)-0.5)...

circa 10 anni fa | 1

| accettato

Risposto
Maximize loglikelihood function GARCH(1,1)
Also, the Econometrics Toolbox will perform a GARCH fitting for you: mdl = garch(1,1); EstMdl = estimate(mdl,Return); ...

circa 10 anni fa | 0

Risposto
Confluent Hypergeometric Function of the First Kind
The _kummerU_ function is the Confluent Hypergeometric Function of the Second Kind. _hypergeom(a,b,z)_ is the Confluent Hyper...

circa 10 anni fa | 4

Risposto
query about validation set
What is called the validation set in Neural Nets is not quite the same as it is for other machine learning algorithms. Typicall...

circa 10 anni fa | 1

Risposto
How do I plot functions involving integration?
We can not anticipate ahead of time what the size of v will be in the integral function, in fact I think this changes to approxi...

circa 10 anni fa | 0

| accettato

Carica altro