![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/14625775_1548321038610_DEF.jpg)
mks
Followers: 0 Following: 0
MATLAB
Statistiques
20 Questions
0 Réponses
RANG
136 989
of 297 016
RÉPUTATION
0
CONTRIBUTIONS
20 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
10.0%
VOTES REÇUS
0
RANG
of 20 419
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 157 725
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
I want to solve ODE for a complex systems in a rk4 method
I know to solve for simple system But i want to solve complex systems using matrix , array in rk4 method. I have a simple rk4 c...
12 mois il y a | 1 réponse | 0
1
réponseQuestion
how can I wired two edges and replace it in an adjacency matrix
clc; clear all; n = 10; C= zeros(n, n); C(1,n)=1; C(1,n-1)=1; C(2,n)=1; A = zeros(n, n); for i = 1:n for j = 1:...
plus d'un an il y a | 1 réponse | 0
1
réponseQuestion
I have an adjacency matrix .Now I want to rewire by replacing two edges at random.I have tried please see below
clc; clear all; n = 10; C= zeros(n, n); C(1,n)=1; C(1,n-1)=1; C(2,n)=1; A = zeros(n, n); for i = 1:n for j = 1:n ...
plus d'un an il y a | 1 réponse | 0
1
réponseQuestion
I have an adjacency matrix .Now I want to rewire by replacing two edges at random.
clc; clear all; n = 10; C= zeros(n, n); C(1,n)=1; C(1,n-1)=1; C(2,n)=1; A = zeros(n, n); for i = 1:n for j = 1:...
plus d'un an il y a | 1 réponse | 0
0
réponseQuestion
I want to check time series of the ordinary differential equation of 10 dimension .summed over all patches
clc; clear all; n = 20; x=accumarray([2 3 n-1 n]',1); B = toeplitz(x,x); numEdgesToRewire = 2; matrixSize=20; e...
plus d'un an il y a | 1 réponse | 0
0
réponseQuestion
Please check the time series code ,the code is not running where B is a matrix of order 20
clc; clear all; n = 20; x=accumarray([2 3 n-1 n]',1); B = toeplitz(x,x); % G=graph(B); % plot(G) % Parameters % matrixSi...
plus d'un an il y a | 1 réponse | 0
1
réponseQuestion
please complete the time series code
clc; clear all; n = 10; x=accumarray([2 3 n-1 n]',1); B = toeplitz(x,x); % G=graph(B); % plot(G) % Parameters % matrixSi...
plus d'un an il y a | 1 réponse | 0
0
réponseQuestion
how can i rewired by replacing 2 edges at random then the code will be ?
n = 10; x=accumarray([2 3 n-1 n]',1); B = toeplitz(x,x); G=graph(B); plot(G)
plus d'un an il y a | 1 réponse | 0
1
réponseQuestion
I have adajacency matrix B. Now ,I want to write a matlab code for time series .I have written some part of the code
clc; clear all; n = 10; C= zeros(n, n); C(1,n)=1; C(1,n-1)=1; C(2,n)=1; A = zeros(n, n); for i = 1:n for j = ...
plus d'un an il y a | 1 réponse | 0
1
réponseQuestion
How can I write a code when few node are connected five edges and some nodes are connected four,three and 2 edges .please help me on this .
clc; clear all; n = 10; C= zeros(n, n); C(1,n)=1; C(1,n-1)=1; C(2,n)=1; A = zeros(n, n); for i = 1:n for j = 1:n ...
plus d'un an il y a | 1 réponse | 0
0
réponseQuestion
Adjacency matrix.I want to simply the code .
clc; clear all; n = 10; C= zeros(n, n); C(1,n)=1; C(1,n-1)=1; C(2,n)=1; A = zeros(n, n); for i = 1:n for j = 1:...
plus d'un an il y a | 2 réponses | 0
2
réponsesQuestion
Adjacency matrix .I have adjacency matrix . I want to convert it into generalise matlab code .
A=[0,1,1,0,0,0,0,0,1,1;1,0,1,1,0,0,0,0,0,1;1,1,0,1,1,0,0,0,0,0;0,1,1,0,1,1,0,0,0,0;0,0,1,1,0,1,1,0,0,0;0,0,0,1,1,0,1,1,0,0;0,0,0...
plus d'un an il y a | 1 réponse | 0
0
réponseQuestion
I want to plot Basin of attraction. I have written a few line of code given below.Please help some one
clear all clc; r1=0.8; K1=8;c1=0.12; alpha1=0.505;alpha2=0.5;gamma=0.25;d1=0.2; r2=0.5;c2=0.22; K2=8;k=1;beta=0.27;lambda=1....
plus d'un an il y a | 1 réponse | 0
1
réponseQuestion
I want to plot phase diagram .But I reach here maintion the code below please help ,me the remaining part
clc;clear;close all; r=0.1; k=50; a=0.01; e=0.5; m=0.05; s=0.1; w=0.1; b=0.001; q=0.03; F=1.; M=50; X=0:1:50;J=[0 50...
plus d'un an il y a | 1 réponse | 0
0
réponseQuestion
I want to plot phase diagram.I have written a code of nullcline and want plot phase diagram
clc;clear;close all; r=0.1; k=50; a=0.01; e=0.5; m=0.05; s=0.1; w=0.1; b=0.001; q=0.03; F=1.613; M=50; X=0:1:50;J=[0...
plus d'un an il y a | 1 réponse | 0
1
réponseQuestion
I want get matrix
matrix_FA=zeros(SSf,SSa); Ln_total=0; while Ln_total<round(C0*SSf*SSa) Type=randi(2); %,1:P->A; 2:A->P if Type==1 ...
plus d'un an il y a | 1 réponse | 0
0
réponseQuestion
I want to plot Isocline i.e want plot (x,y) when system contains step function .
% Parameters r =0.1; % Define the value of r k = 50; % Define the value of k a =0.01; % Define the value of a e = 0.5; % Def...
plus d'un an il y a | 1 réponse | 0
0
réponseQuestion
I want to isocline induced step function
x'=rx(1-x/k)-axy/(1+quM) y'=(eaxy)/(1+quM)-my Where u=0 if x<=pi_0; u=sx/(sx+F)+w(sx-F)/(b(sx+F)M), if pi_0 <x<pi_1; u=1 if ...
plus d'un an il y a | 2 réponses | 0
2
réponsesQuestion
Network adjacency matrix for connecting n node with probability p
i have write this but is not running clc; clear all n=10; p=0.4; adj_matrix = generate_adjacency_matrix(n, p) function ad...
plus d'un an il y a | 3 réponses | 0
3
réponsesQuestion
i want to get adjacency matrix of a network
i have write this but is not running clc; clear all n=10; p=0.4; adj_matrix = generate_adjacency_matrix(n, p); function...
plus d'un an il y a | 2 réponses | 0