Beantwortet
Out of memory error
You have 20000 variables. So fmincon will be computing a Hessian matrix internally of size 20000*20000 = 4e8. But that matrix is...

fast 4 Jahre vor | 3

| akzeptiert

Beantwortet
Why does smoothdata give bad results at the beginning and end of a dataset?
Think about it. This is really classic behavior, completely expected. Imagine the smoothing routine as a mathematical implementa...

etwa 4 Jahre vor | 4

| akzeptiert

Beantwortet
Value of infinite integral is different
First, What is the correct value of this integral? syms k K = (k.^3).*(1+(2.35.*(k).^(2/3))) Just looking at it, I see a func...

etwa 4 Jahre vor | 1

Beantwortet
How can I get the symbolic steady state vector of a Markov Chain?
Easy, peasy. For example, given a simple Markov process, described by the 3x3 transition matrix T. T = [.5 .2 .3;.1 .4 .5;.1 .1...

etwa 4 Jahre vor | 2

Beantwortet
How to extrapolate given data to find more number of points?
Your words ask how to do interpolation. However, then you ask about extrapolation. The two problems are VERY different. To quo...

etwa 4 Jahre vor | 0

Beantwortet
Array indices must be positive integers or logical values?
MATLAB does not allow an index of 0. The FIRST element of an array or vector is indexed as x(1). In your loop, what was the ran...

etwa 4 Jahre vor | 0

Beantwortet
MAXIMUM MATRIKS IN MATLAB
Since you did not say which one to leave non-zero, I'll asssume that all values equal to the maximum are retained. A = randi(20...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
Backslash does not provided the solution with the smallest 2-norm
It seems the gist of your question comes down to the idea that for a wide matrix, MATLAB should (in your eyes only) always produ...

etwa 4 Jahre vor | 0

Beantwortet
Solving Trigonometric Equations with More Than One Variables
You need to understand that first, the use of solve like this will probably fail. You have 4 equations, but only 3 unknowns. Sol...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
I need an expression between two symbols R and a connected within a large order determinant.
Sorry, but not going to happen. Ever. Why not? There are multiple reasons why this will fail, so you are tilting at impossibly h...

etwa 4 Jahre vor | 0

Beantwortet
Function, dot, help me for solution
Your problem has NOTHING to do with dots. This is a common mistake we see made here. Suppose you have a pair of function handle...

etwa 4 Jahre vor | 1

Beantwortet
Equation to Matlab code
(I really hope I am not doing your homework here, but the question is not posed as if it is, even though I assume you are a stud...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
How to get elapsed time of a code in matlab ?
Sorry, but no. A prediction of the time required for some arbitrary piece of code will never happen. It cannot happen. Well, no...

etwa 4 Jahre vor | 2

Beantwortet
Optimization of points generating inside a sphere
The common scheme that is advised is to generate points randomly, then if a point is too close to a neighbor, then you reject it...

etwa 4 Jahre vor | 0

Beantwortet
why covariance matrix Should be positive and symmetric in mahalanobis distance
SIGH. Multiplying a covariance matrix by its transpose is NOT what you want to do! If it is already a covariance matrix, that op...

etwa 4 Jahre vor | 0

Beantwortet
How do we interpolate a data set with noise?
Um, you generally don't want to interpolate noisy data! That is just a good way to amplify the noise. I did show many years ago,...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
n as the natural numbers
There are many ways to interpret this question. If the goal is simply to TEST to see if n is a natural number, then you might do...

etwa 4 Jahre vor | 1

Beantwortet
how to use surf function?
Almost always, when someone says they have a single vector of z values and they want to use surf, they mean that they have a lis...

etwa 4 Jahre vor | 1

Beantwortet
Is there an easier way to index diagonal elements of a matrix?
A = diag(randi(100,10,1)); n = size(A,1); A(sub2ind([n,n],[3 6 7 9],[3 6 7 9])) = 1000; A If you understand how matrix ele...

etwa 4 Jahre vor | 2

| akzeptiert

Beantwortet
Symbolic solve with user-specified precision
Your belief has preciously little value. Faith in mathematics tends to be a waste of mental energy. Let me expand your equations...

etwa 4 Jahre vor | 0

Beantwortet
I created an array of size 255 of pseudo-random integers . I want to access the value at a particular index of the array how can I do it ?
Basically, you need to look at the getting started tutorials. Try the MATLAB Onramp. r0 = uint8(randi(255,255,1)); r0(158)

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
Is it possible to (non-linear) minimize x^y by choosing both x and y?
Can MATLAB solve it? Yes. Your doubt is only you not knowing how to solve the problem. In fact, simplest is to transform the pr...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
isprime function seems to have poor performance
As a follow-up, I've also compared the MATLAB isprime to that of Python and Mathematica. On significanty large numbers, The MATL...

etwa 4 Jahre vor | 2

Beantwortet
Where to get a zip code for free 30 days trial
This is not a question about MATLAB. However, the answer is easy. CONTACT sales/customer service. Just contact the MathWorks dir...

etwa 4 Jahre vor | 1

Beantwortet
Is it possible to generate an encrypted function that can be used a limited number of times?
Is it possible? It depends on how good or technically naive are your users. How determined would they be? You can "encrypt" a f...

etwa 4 Jahre vor | 1

Beantwortet
Optimization - find a max on a complicated function
You maximize a function using a tool that minimizes it, by finding the minimum of -f(x). How to do it? Use fminbnd. Set the bou...

etwa 4 Jahre vor | 1

Beantwortet
finding the orthogonal vectors for a series of vectors
I think you are confused. Really, this is not a difficult problem. You need to understand the linear algebra of it, or you will ...

etwa 4 Jahre vor | 3

Beantwortet
How to select columns in a matrix whose first row data is positive?
Easy peasy. A=[-1 2 5 4 -4;1 2 3 4 6] B = A(:,A(1,:) > 0)

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
How can I use the ( nchoosek ) for this case nchoosek(x,y) where x=[1:1:80] , and y=64;
As Jan pointed out, you CANNOT solve your problem in this way. Using nchoosek in this form, it almost always is a form of brute ...

etwa 4 Jahre vor | 0

Beantwortet
How can i solve this differential equation by the method of finite difference approche?
Answers is not a service where we do your homework assignments. However, you have now gotten an answer, so I'll point out that y...

etwa 4 Jahre vor | 0

Mehr laden