Beantwortet
Error solving bvp4c - Singular jacobian
You have a simple classical ODE, with two INITIAL conditions, not boundary conditions at different ends. So use a tool like ODE4...

etwa 4 Jahre vor | 0

Beantwortet
noisy plot after calculating first derivative
You should recognize that differentiation is a noise amplification operator. So any small amounts of noise in your signal, even ...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
fminsearch with side conditions
Generally, the solution is to not use fminsearch. Use a better optimizer instead. It will be faster, and you will get a better a...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
Obtaining value of highest order derivative over simulation period
Can you use schemes like ODE45, combined with gradient to compute exact estimates of the high order derivatives? Sadly, no. High...

etwa 4 Jahre vor | 1

Beantwortet
Acceleration at the center of the triangle
If you have some known parameter at the three corners of a triangle, then the best estimator of that parameter at the center of ...

etwa 4 Jahre vor | 1

Beantwortet
How to use bitn
You cannot define a scalar variable as a binary one with an arbitrary number of bits. You can define integer variables, with a s...

etwa 4 Jahre vor | 0

Beantwortet
Why I'm getting error (too many arguments) in my integral
You need to pay MUCH more attention to your code. For example, just a quick look shows this: Intdoble6=int(int(2*y^2,x,0,1)4*x...

etwa 4 Jahre vor | 0

Beantwortet
I nee to write a code to solve a definite integral. The output format has to be fprintf.
Do you understand that MATLAB REQUIRES a multiplication operator? You cannot just put a number next to a letter, and expect MATL...

etwa 4 Jahre vor | 1

Beantwortet
Maximum Likelihood Estimation function
Is there another way? Why not negate the function, and then use a tool like fminbnd? Or fminsearch. Or fmincon or fminunc, or .....

mehr als 4 Jahre vor | 0

Beantwortet
What optimizer should I use?
This is not a problem of finding an optimizer. This is a problem of understanding how to formulate a problem so that it is possi...

mehr als 4 Jahre vor | 0

Beantwortet
simulation stopped because of step size tolerance and constraints
Let me see. You posed an optimization problem. The solver returned a result, one that SATISFIES the tolerances you posed. You we...

mehr als 4 Jahre vor | 0

Beantwortet
Revolving a curve about the y-axis to generate a 3D surface
Certainly. Just write the code yourself. Seriously, it is not difficult. Consider the function y = f(x). f = @(x) x.*(1-x); ...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
matlab rank of a matrix
Because the call: R = ones(100,100); rank(R,1e-20) attempts to do something that is demonstrably silly, in terms of double pr...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
which project of these projects will be easy with matlab?
I think you do not understand. ANY project can be either easy, or too difficult for you to handle. What matters is if you unders...

mehr als 4 Jahre vor | 0

Beantwortet
How should I approach solving differential equation as function of two variables r, k?
While you COULD use an ODE solver, this is something you would ONLY do if the ODE had no analytical solution. And this ODE has a...

mehr als 4 Jahre vor | 1

Beantwortet
Fmincon too many input arguments
How are you using it? That is, how did you call the function try_no_gradient(u0)? When you get an error message, show the COMPL...

mehr als 4 Jahre vor | 0

Beantwortet
How to subtract only certain elements of a vector
a and b are not vectors in your question, they are arrays. However, if you want to do this, nothing stops you from selecting th...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
Plot the graph using non linear equation
A nonlinear problem like this is called an implicit function. You can think of the value of h, as a function of theta, but there...

mehr als 4 Jahre vor | 1

Beantwortet
convert current date and time to char
Easier than you think. First, what is the current time? format long g CurrentTime = now That might not seem terribly helpfu...

mehr als 4 Jahre vor | 1

Beantwortet
Limit angle in [-90, 90] degree
You cannot simply constrain an ODE solver to stay within bounds. However, almost certainly, if the ODE solver wants to go outsid...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
Code involving factorials and a given value
Now that you have a looped solution, let me show how to solve the problem more directly. There are actually several solutions I ...

mehr als 4 Jahre vor | 1

Beantwortet
how to solve this differential equation system symbolically?
This seems like a homework problem. But Walter has already given an answer, that I think is not helpful, since dsolve will fail ...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
Optimization to find a deterministic number
Huh? This question is pretty confusing. But let me see where it goes. First, it seems you claim that g(x) is the solution of an...

mehr als 4 Jahre vor | 0

Beantwortet
How to rotate about an axis parallel to x axis?
Simple. Effectively, you transform the problem to a rotation around the x axis, then after the rotation, you tranform back. For...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
Matrix from measured data is singular, what could be the reason?
In no place in this thread have I seen the matrix A. I've seen various versions of it however, with various numbers of rows. I'v...

mehr als 4 Jahre vor | 0

Beantwortet
Reinforcement Learning toolbox missing functions
If you have a current version of that toolbox, it should have those tools. which rlDiscreteCategoricalActor which rlValueFunct...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
Calculate the distance between points in a large data set
LEARN TO USE MATLAB. Do not create numbered and named variables. DO create vectors and arrays. Use them. Since all you have pos...

mehr als 4 Jahre vor | 2

| akzeptiert

Beantwortet
Optimization terminated: average change in the fitness value less than options.FunctionTolerance.
Star has answered your uestion. However, I want to expand on what was said there. Too often, I see people confused by this messa...

mehr als 4 Jahre vor | 0

Beantwortet
Describe non-convex region with linear inequality constraints
Nothing stops you from dissecting a polygonal region into triangles, even if not convex. As Matt said, you CANNOT use a set of l...

mehr als 4 Jahre vor | 1

Beantwortet
How to find area of enclosed region (i.e., calculate Green's Theorem) in MATLAB?
You have a sequence of points in a loop. Create a potyshape from them, then compute the area. help polyshape methods polyshape...

mehr als 4 Jahre vor | 0

Mehr laden