Statistica

MATLAB Answers

0 Domande
6.944 Risposte

RANK
14
of 301.327

REPUTAZIONE
17.262

CONTRIBUTI
0 Domande
6.944 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
2.013

RANK
 of 21.234

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK

of 173.995

CONTRIBUTI
0 Problemi
0 Soluzioni

PUNTEGGIO
0

NUMERO DI BADGE
0

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Most Accepted 2025
  • Most Accepted 2024
  • Most Accepted 2023
  • Most Accepted 2022
  • Explorer
  • Master
  • 36 Month Streak
  • Revival Level 2
  • Knowledgeable Level 5
  • First Answer

Visualizza badge

Feeds

Visto da

Risposto
What are possible causes of "Unable to meet integration tolerances without reducing the step size below the smallest value allowed" when calling ode15s() from Simulink?
What are possible causes of "Unable to meet integration tolerances without reducing the step size below the smallest value all...

1 giorno fa | 0

Risposto
Confidence interval in fit
Call "confint" (for the parameters) or "predint" (for the fit) from the command line with the wanted confidence level: https://...

1 giorno fa | 1

| accettato

Risposto
what's wrong with matlab dsolve ?
If a > 0, insert C1 = const + log(a) in MATLAB's solution for the free constant C1, and you will recover your solution. For a ...

2 giorni fa | 0

Risposto
Curve fitting confidence intervals - discrepancy in manual CI plot and predint plot
Did you read https://uk.mathworks.com/help/curvefit/confidence-and-prediction-bounds.html ? The formulae to compute the diffe...

4 giorni fa | 1

Risposto
How do I find if a point is within the volume of a rotated ellipsoid
Apply the "anti-rotation" of the ellipsoid to the point P=(x,y,z) and check whether the image P'=(x',y',z') you receive lies in ...

20 giorni fa | 1

| accettato

Risposto
In my code, I am getting plot on lambda=1, but rest plots are not reflecting. Please help to get all figures.
The results for the last 3 values of lambda are NaN (see above) - thus they are not plotted.

circa un mese fa | 0

| accettato

Risposto
Wanting all results for an algebraic equation that is within a function .
One method: Define the algebraic variables as additional solution variables to the ODE system. This results in a DAE-system (i....

circa un mese fa | 0

Risposto
Simulating a system of damped PDEs with the Matlab PDE toolbox.
Did you try to set the problem as u1_dot = u3 u3_dot = delta(u1) + J1 u2_dot = u4 u4_dot = -u4 + delta(u2) +J2 ?

circa un mese fa | 1

Risposto
pdepe fails to solve PDEs with absorbing boundaries
This is what I get from AI when I type in your error message: This error occurs because a third-party package (usually MatCont)...

circa un mese fa | 0

| accettato

Risposto
different in Poisson distribution test
"kstest" is not applicable since the Poisson Distribution is a discrete, not a continuous distribution. Since the example "Test...

circa un mese fa | 1

| accettato

Risposto
Find all roots of a transcendental equation
Quite a hack and no guarantee that you will find all roots in the specified region, but I think there is no better method for th...

circa 2 mesi fa | 0

| accettato

Risposto
How to use the "Use weights for each response" option on simbiology model analyzer on a Fit program?
Did you study the example "Use Group-Specific Dosing Data for Parameter Estimation with Numeric Weights" under https://uk.mat...

circa 2 mesi fa | 0

| accettato

Risposto
Saving a matrix with a variable that could take any value
Either define the matrix as a function handle SM = @(L)[12/L^3 6/L^2 -12/L^3 6/L^2; 4/L -6/L^2 2/L 6/L^2; ...

circa 2 mesi fa | 1

| accettato

Risposto
Save variable number in matrix for later iteration
Maybe like this ? I'm not sure whether you want to take the elements of C and J according to the order of the elements in I or...

circa 2 mesi fa | 1

| accettato

Risposto
How to solve dy/dt=A(t)*y where y is a vector (3 elements) and A is 3x3 matrix with time dependent elements.
The code should somehow look like: Y0 = [1;0;0]; tspan = [0 1]; v1 = ...; % your first vector v1 needed to compute A v2 = ....

2 mesi fa | 0

Risposto
Please help me to run this simple code
Your solution for rr(3) becomes complex-valued. For complex-valued functions, you can plot e.g. their real part, their imagina...

2 mesi fa | 0

Risposto
How do I add summation to a symbolic equation in order to integrate across set bounds?
Use logncdf: https://uk.mathworks.com/help/stats/logncdf.html Use to compute f_act with the help of "logncdf" and use the ...

2 mesi fa | 1

| accettato

Risposto
Implicit expansion with arrayfun (cpu vs gpu)
F3 = cellfun(@myadd, [{x}], [{y}], 'UniformOutput', false) will work. Arrayfun tries to apply "myadd" to [first element of x,f...

2 mesi fa | 1

Risposto
Inverse Problem, I have unknowns to solve it
L and N cannot be estimated separately. As long as phi is a single scalar value , L*phi + N must be treated as only one parame...

3 mesi fa | 0

| accettato

Risposto
expanded vs unexpanded polynomials in symbolic integrals
Without giving the limits of integration, "int" returns an arbitrary antiderivative for the function you want to integrate. But ...

3 mesi fa | 0

| accettato

Risposto
symbolic integrate and plot a function of one variable
syms x(u) y(u) g(u) C1 C2 v uref g(u) = 159648450049389632/(3991211251234741*(4 - (C1 + 2*u + 3)^(1/2))^(1/2)) + 14; x = C2*ex...

3 mesi fa | 0

| accettato

Risposto
Trying to make a goal seek like program using fsolve?
clear all; close all; clc f= @(x) Average1(x)-65; engineering= 30; % Intiall estimate engineering = fsolve(f,engineering) ...

3 mesi fa | 0

| accettato

Risposto
numerical Instabilities for bessel functions
Although it's slow, the full Newton method seems to work in this case (except for one value of X_kRE): clear all; close all; ...

3 mesi fa | 1

Risposto
i want to add cplex and yalmip on my mac how ?
This is the problem-based MATLAB code to set up your problem. I might have done some mistakes translating your constraints, but ...

3 mesi fa | 1

Risposto
Setting constraint between estimation parameters in nonlinear grey box estimation
I doubt that you can set lower and upper bounds on parameters as nonlinear functions of other parameters. In my opinion, Paramet...

3 mesi fa | 0

| accettato

Risposto
Help implementing 4th-order Runge–Kutta for ODEs with Dirac impulses (discontinuous system)
Look at figure 3 (a) and (b) of the article. Each time the curve for U becomes discontinuous, a dosing is applied to the mice. I...

4 mesi fa | 0

Risposto
Defining a function in one file and using it in a second file
The calls must be for i = 2:NumTimesteps % for each timestep % 1. Soil Respiration % as per Reich, 2002 SoilResp_gC = S...

4 mesi fa | 0

Risposto
real part of eigenvalues vs damping plot
I don't know what you try to plot, but the cell matrix lamda below should contain all information you need. mr=306, mj=141.5, m...

4 mesi fa | 0

Risposto
First value of an array does not display with a decimal
If you like it more, you can use sprintf('%f %f %f',[x, y, z]) instead of disp([x y z]);

4 mesi fa | 1

Risposto
How to integrate a control system by ode45 with PID control input ?
Add a second differential equation dV/dt = P.Xd - X with initial condition V(0) = 0 Then V(t) = integral_{0}^{t} (P.Xd -...

4 mesi fa | 0

Carica altro