Beantwortet
Constants not recognized in integral
You are still thinking that you are using some other language, where you need to declare variables as doubles. This line does n...

fast 5 Jahre vor | 0

Beantwortet
How can i write this equation: d = obs + sqrt(alfa*Cd^0.5)*randn(nd, ne)
Do I understand you correctly? obs is an array of size 51x71x3? Or is it a vector of that length? Regardless... alfa is a scala...

fast 5 Jahre vor | 0

Beantwortet
Array indices must be positive integers or logical values.
It does not matter that you WANT V(0) to be something. MATLAB does not support zero based indexing. PERIOD. However, nothing st...

fast 5 Jahre vor | 1

Beantwortet
plotting a for loop returns Empty Graph
You are not plotting ANYTHING in a for loop. You may think you are. Where are the plot statements? AFTER THE LOOP TERMINATES. Af...

fast 5 Jahre vor | 0

Beantwortet
How to solve a large 6-variable non-linear matrix determinate equation for all unique values.
This is an almost impossible problem to solve symbolically. Why? symbolic computations using determinants become INCREDIBLY comp...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
vpa is not outputing enough digits
I think you may have a setting messed up on your computer. For example... X = sym(3)/32; vpa(X) ans = 0.09375 But now, if I...

fast 5 Jahre vor | 2

| akzeptiert

Beantwortet
change of expression ?
help solve help isolate Either will work. Why not try them? Best would be to read the documentation, the tutorials. You would ...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
Matlab and Fortran Precision Issue
No. In the most common case, such a disagreement is because you copied over some numbers from Fortran to MATLAB (or the other w...

fast 5 Jahre vor | 1

Beantwortet
Starting Code from Middle
Why? Because you are not doing it correctly? What can I say? Maybe you are just running a really old version of MATLAB. Most lik...

fast 5 Jahre vor | 0

Beantwortet
Difference between fittype 'poly1' and 'A*x+B'?
When you use the 'poly1' model, FIT is probably smart enough to understand this is a LINEAR model. And that it is solvable using...

fast 5 Jahre vor | 3

Beantwortet
fitdist should be pdf^-1 but is seems not to return correctly
The problem is, you do not understand that evaluating the PDF is NOT the same thing as sampling random numbers from that distrib...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
How to solve 4 non linear equations with 5 unknowns using least square method
You have an under-determined problem. If any solution exists, then there will be infinitely many solutions. (This is the case in...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
How to solve differential equations with varying constants
If a constant varies with time, then is it really a constant? Of course not. X=[ -47.9440 19.0518 -14.4223 -47.9833] If th...

fast 5 Jahre vor | 0

Beantwortet
Need matrix or vector with 1,0,1,0,1,0.........
Hint: Use mod. For example, mod(1:25,2) But really, you need to start by looking at the Onramp tutorials, or read any text. I...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
3D plot of an ellipsoid
theta_ = [1 2 3]; COV = cov(rand(10,3)); % picking some arbitrary values for theta_ and COV... RC=@(x,y,z) (theta_-[x y z])*in...

fast 5 Jahre vor | 2

| akzeptiert

Beantwortet
Setting a lower bound on the values of an array ( can it be done without a for loop?)
Since the question is morphing along, I'll add a second answer to the current question. You cannot tell MATLAB to automatically...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
Setting a lower bound on the values of an array ( can it be done without a for loop?)
I'm sorry, but you are simply wrong. When a number is TOO small, it does not turn into a NaN. It turns into either zero, or -inf...

fast 5 Jahre vor | 0

Beantwortet
Unable to find explicit solution
Why do you think a solution exists at all? And, if a any solution does exist, then IF any solution exists at all, there will alm...

fast 5 Jahre vor | 0

Beantwortet
Why does my nonlinear (exponential or trigonometric) model fit poorly?
BASINS OF ATTRACTION: Since I will be unable to make my first answer too long, let me expand on the issue of poor starting valu...

fast 5 Jahre vor | 0

Beantwortet
fit function does not work correctly
I wrote a long question (and answer) just yesterday, that goes into depth on the why and how to solve this. https://www.mathwor...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
Why does my nonlinear (exponential or trigonometric) model fit poorly?
Suppose I wish to fit some data to a simple exponential model. I'll make up some data, then add moderate noise to the data. X ...

fast 5 Jahre vor | 0

| akzeptiert

Frage


Why does my nonlinear (exponential or trigonometric) model fit poorly?
This is a question I see often online by users of curve fitting tools. Typically, I see someone try to use a tool like the curve...

fast 5 Jahre vor | 3 Antworten | 2

3

Antworten

Beantwortet
i have a problem with my plot, i am not getting any values and the system gives me an empty plot.
Look at what you did. a = 0;5; First, maybe you think this creates a vector in a? Instead, it just sets a to 0. Then it dumps...

fast 5 Jahre vor | 1

| akzeptiert

Beantwortet
How do I use multi-parameters in my optimization problem for fminunc?
No. It won't look like that. fminunc cannot somehow magically know how you intend the inputs to be used. Computers cannot read y...

fast 5 Jahre vor | 0

Beantwortet
How to find a limit without syms and limit function
You can use my limest function. It is on the file exchange. >> fun= @(x) (x.^3 - 1)./(x-1) fun = function_handle with value...

fast 5 Jahre vor | 0

Beantwortet
not getting left eigen vector
If you want the set of left and right eigenvectors, we see in the help for eig... [V,D,W] = eig(A) also produces a full mat...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
Optimization of a series of linear equations to maximize profit
They are not differential equations. So I'm not sure what you were possibly thinking. They are LINEAR equations. But you do no...

fast 5 Jahre vor | 0

Beantwortet
Approximate dots area by circle and define its radius
You cannot do anything until you decide what you need to do. You say to need to approximate it with a circle. If the circle wer...

fast 5 Jahre vor | 0

Beantwortet
plotting number bigger than double realmax
If your numbers are greater than realmax, then you can't. Period. You cannot represent a number greater than realmax. You cannot...

fast 5 Jahre vor | 0

Beantwortet
How do I calculate a logarithm of a variable base?
Just write your own function. Save it on your search path. Now you have it. [log(10),logb(10)] % natural log [log10(5),logb(5,...

fast 5 Jahre vor | 1

Mehr laden