Réponse apportée
Find approximate solution of equation
Is there some general method, to ALWAYS be able to approximate the solution of a large system, and have a reliable result? No. O...

plus de 2 ans il y a | 0

Réponse apportée
[0:0.1:1] whys is not exactly 0.1 steps ?
Can you represent the number 0.1 exactly? Remember that MATLAB does not store the exact representation of numbers. Instead, it u...

plus de 2 ans il y a | 2

Réponse apportée
How to stop quadratic formula calculator from giving inverse outputs?
The roots of the quadratic you supply are indeed 6 and -3. roots([1 -3 -18]) So your code worked correctly. If you expected ...

plus de 2 ans il y a | 1

Réponse apportée
hyperpca applied to a set of several hyperspectral images
You cannot combine multiple PCA analyses. Since each one requires the computation of the eigenvalues and eigenvectors of a matri...

plus de 2 ans il y a | 0

Réponse apportée
Simpson integral - problem with writing the formula
a is a scalar. At least, it should be, based on how you show the code was called. If so, then why have you done this? dI = f(a(...

plus de 2 ans il y a | 0

Réponse apportée
If I have an array and I need to find an element in the array how do I go about it?
I think you are confusing things, not understanding there is a difference between the number 110, and the vector [1 1 0], and th...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
Matlab Predict function is not efficient
No code is ever as fast as users want. If you know how to make it faster, then write your own version. If your version really is...

plus de 2 ans il y a | 0

Réponse apportée
Equally spaced points along a nonlinear path
Simpler yet, just download my interparc from the file exchange. It allows you to do the operation in a variety of ways, using se...

plus de 2 ans il y a | 1

Réponse apportée
Converting between x,y cartesian variables to angle in symbolic variables
No, the toolbox will never try to understand your equations, and then infer what the variables mean to you, and then perform sub...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
how write a matrix with specific features
I think you are confused about what you can do with MATLAB. Those constraints simply tell you the associated matrix for the grap...

plus de 2 ans il y a | 1

Réponse apportée
I have a nonlinear equation with a symbolic variable and cant solve it.
Look carefully at your problem. n = 2.1; alpha0 = 0; syms p alpha eqn = p^(n+1) - alpha0*p^n + p -(alpha0 + alpha) == 0 So ...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
findging eigenvectors with eigenvalues
Most of the time when I see someone worry their eigenvectors are not correct, it is just because of a sign error on the eigenvec...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
Library function log10 not found when using fit
x = rand(10,1);y = x + rand(10,1); fit(x,y,'log10') It is almost always, ALWAYS the case that when this happens, you were prev...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
iterative estimation of eigenvalues and eigenvectors by the inverse power method. Your MATLAB/Octave code shouldn’t be hardcoded. ● Calculate the eigenvectors and eigenvalues
Let me guess, you have a problem with this matrix. Does the matrix have any special properties? What, for example, are the eige...

plus de 2 ans il y a | 0

Réponse apportée
using PCA to filter outliers in MATLAB
I've attached my quick shot at an n-dimensional outlier tool, based on Mahalanobis distance. I am pretty sure it has some seriou...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
How do I plot a symbolic equation that I have created?
By the way, there is NOTHING symbolic in the code you wrote. syms t % this makes t symbolic % no need to put decimal points ...

plus de 2 ans il y a | 0

Réponse apportée
scatter command not working
(It is good you are using the tutorials.) But first, learn to read the error message, an important skill in using MATLAB, unless...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
Nonlinear optimization with branching solution space
Just solve 11 distinct problems, each of them continuous. Use a loop, setting x to each of the 11 possible values. Save each sol...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
how to create nxn matrix with main diagonal that enters odd rows/columns with zero and even ones start with 2(n+1) sequence
Simple is to use diag. n = 5; % Now many non-zero elements will we have? N = 1:(2*n); % a simple index vector D = N.*mod(N-1,...

plus de 2 ans il y a | 0

Réponse apportée
Does I properly translate the equations in matlab code?
Ouch. That would be a miserable set of equations to try to code. (You have my sympathies.) I did some very quick spot checks, an...

plus de 2 ans il y a | 0

Réponse apportée
problem in curve fitting
C1 continuous? Is there a difference? Absolutely YES. C1 continuity, using circular "arcs" in 3-d? UGH. I'm a career mathemati...

plus de 2 ans il y a | 0

Réponse apportée
species go to negative values
Remember that the software does not truly understand your model, and what you are attempting to simulate in that model. It only ...

plus de 2 ans il y a | 0

Réponse apportée
Better "probabilities"?
How effective is rand? I'm not sure what you mean by "effective", or for that matter, "advanced". It is a state of the art rando...

plus de 2 ans il y a | 1

Réponse apportée
Need help solving heat equation using adi method
You say it works for sufficiently small values dt. With that exp(t) term in there, do you seriously expect it to work well for...

plus de 2 ans il y a | 0

Réponse apportée
Non-linear Algebraic 36 equations unsloved
Actually, a starting value set like ones(36,1) is often a dangerous thing to do. Making all of the starting values the same can ...

plus de 2 ans il y a | 0

Réponse apportée
math model of neural network fitting
As is often the case with such "models", there is nothing you could write down, at least not easily, and without nasty arrays of...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
About Fluid dynamics in a porous medium...
As @Torsten said, this is far too vague a question. I would suggest starting with a far simpler problem, especiially good is if...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
inversing huge Y Matrix
As always, I'll start by saying that computing the inverse of a matrix is a bad idea. And of course, you don't say what you thin...

plus de 2 ans il y a | 0

Réponse apportée
How can I solve this implicit function in MatLab?
Trivial, in some eyes. ;-) This is one of the simpler implicit problems you might write down, since a direct solution exists in ...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
How to add unknow parameter in matrix and solve it by use det() syntax for finding w
syms w; m1 = 1.8; m2 = 6.3; m3 = 5.4; m4 = 22.5; m5 = 54; c2 = 10000; c3 = 500; c4 = 1500; c5 = 1100; k2 = 1*10^8; k3...

plus de 2 ans il y a | 0

Charger plus