MOSLI KARIM
UNIVERSITY OF BEJAIA
Followers: 0 Following: 0
PHD STUDENT IN MECHANICAL UNIVERSITY OF BEJAIA
Python, MATLAB
Spoken Languages:
Arabic, English, French
Statistics
RANK
210 462
of 295 467
REPUTATION
0
CONTRIBUTIONS
1 Question
9 Answers
ANSWER ACCEPTANCE
0.0%
VOTES RECEIVED
0
RANK
of 20 234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153 912
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
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...
11 månader ago | 0 answers | 0
0
answersError 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...
12 månader ago | 0
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...
12 månader ago | 0
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...
nästan 2 år ago | 0
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 ...
nästan 2 år ago | 0
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,...
nästan 2 år ago | 0
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(...
nästan 2 år ago | 0
Solving a highly non linear equation in Matlab
here is my proposal for your problem Unrecognized function or variable 'here'. %%%%%%%%%%%%%%%%%% CODE MATLAB func...
mer än 2 år ago | 0
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...
mer än 2 år ago | 0
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...
mer än 2 år ago | 0