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

más de 10 años hace | 1

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

más de 10 años hace | 1

Enviada


Currency Symbols
Retrieve currency symbols from a currency char array.

más de 10 años hace | 1 descarga |

0.0 / 5

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

más de 10 años hace | 0

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

más de 10 años hace | 1

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

más de 10 años hace | 0

Respondida
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'); ...

más de 10 años hace | 5

| aceptada

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

más de 10 años hace | 4

| aceptada

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

más de 10 años hace | 2

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

más de 10 años hace | 0

Respondida
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

más de 10 años hace | 3

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

más de 10 años hace | 0

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

más de 10 años hace | 1

Respondida
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

más de 10 años hace | 1

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

más de 10 años hace | 0

| aceptada

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

más de 10 años hace | 4

| aceptada

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

más de 10 años hace | 2

| aceptada

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

más de 10 años hace | 0

| aceptada

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

más de 10 años hace | 0

| aceptada

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

más de 10 años hace | 0

| aceptada

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

más de 10 años hace | 0

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

más de 10 años hace | 0

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

más de 10 años hace | 0

| aceptada

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

más de 10 años hace | 0

| aceptada

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

más de 10 años hace | 1

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

más de 10 años hace | 1

| aceptada

Respondida
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); ...

más de 10 años hace | 0

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

más de 10 años hace | 4

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

más de 10 años hace | 1

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

más de 10 años hace | 0

| aceptada

Cargar más