photo

MOSLI KARIM


UNIVERSITY OF BEJAIA

Last seen: etwa ein Jahr vor Aktiv seit 2022

Followers: 0   Following: 0

PHD STUDENT IN MECHANICAL UNIVERSITY OF BEJAIA

Programming Languages:
Python, MATLAB
Spoken Languages:
Arabic, English, French

Statistik

MATLAB Answers

1 Frage
9 Antworten

RANG
171.758
of 297.648

REPUTATION
0

BEITRÄGE
1 Frage
9 Antworten

ANTWORTZUSTIMMUNG
0.0%

ERHALTENE STIMMEN
0

RANG
 of 20.460

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 159.301

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • First Answer
  • First Review

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


How can I resolve the "Unable to solve collocation" error in MATLAB when trying to solve a nonlinear differential equation with nonlinear boundary conditions?
MIT6() %% function MIT6 clc close all format long global A B eta A =10 ; % INTERNAL RADIUS B=200; %% EXTERNEL RADI...

etwa ein Jahr vor | 0 Antworten | 0

0

Antworten

Beantwortet
Error in Bvp4c
this code works function d Pr=0.72; beta=0.5; lam=0.2; E=0.5; for gamma=0.0:0.25:1 sol = bvpinit(linspace(0,5,50),[0 0 0 0...

mehr als ein Jahr vor | 0

Beantwortet
How to get two solution of this single equation
My %The range for one solution 0-20 and for seconde 40-120. function My xa = 0; xb = 20; xint = linspace(xa,xb,1000); solin...

mehr als ein Jahr vor | 0

Beantwortet
4th order ODE, 4 boundary conditions
%% function answer_matlab clc clear all close all format long mesh=20; x=linspace(0,1,mesh) solinit=bvpinit(linsp...

etwa 2 Jahre vor | 0

Beantwortet
How I can give condition & plot the solution of this differential equation. . . . . . . Please Guide
%% function answer clc clear all close all global A epsilnot = 8.85*10^-12; dele = 11; E = 1; k11 ...

etwa 2 Jahre vor | 0

Beantwortet
Not enough input arguments. Error in odefun (line 2) y1 = y(1); Error in bvp4c (line 5) sol =bvp4c(odefun,bcfun,solinit);
function ANSWER_MATHWORKII D=0.1; % m2/s U=1; % m/s K = 1*10^-6;% equation to solve guess =[2;1]; xmesh = linspace(0,1,...

mehr als 2 Jahre vor | 0

Beantwortet
Solve second order non linear differential equation
Pi=1; BC=@(ya,yb)[ya(1) yb(1)-1]; dxdy=@(x,y)[y(2);(1/2)*Pi-y(1)^2]; solinit=bvpinit(linspace(0,1,5),[0 0]); sol=bvp4c(...

mehr als 2 Jahre vor | 0

Beantwortet
Solving a highly non linear equation in Matlab
here is my proposal for your problem Unrecognized function or variable 'here'. %%%%%%%%%%%%%%%%%% CODE MATLAB func...

mehr als 2 Jahre vor | 0

Beantwortet
Solve nonlinear 2nd order ODE numerically
function pvb_pr13 tspan=[0 1.5]; y0=[1 0]; [x,y]=ode45(@fct,tspan,y0); figure(1) hold on plot(x,y(:,1),'r-') grid o...

mehr als 2 Jahre vor | 0

Beantwortet
BVP4C Unable to solve the collocation equations -- a singular Jacobian encountered
Hi, here is the solution that I propose to you %These are my setup functions. R=0.2; q=1; k=1; eps=1.0000e-06; r=linspac...

mehr als 2 Jahre vor | 0