ankanna
Followers: 0 Following: 0
Feeds
已回答
how to create matrix with coordinates and calculate distance?
ok sir thank you for your quick response
how to create matrix with coordinates and calculate distance?
ok sir thank you for your quick response
3 years 前 | 0
提问
how to calculate interference?
n = 3; ri=0.9 source = 1; destination = 3; Link=(n*(n-1))/2; c=2^Link; NN = toeplitz(Link+1:-1:2) mask = logical(fliplr(di...
3 years 前 | 0 个回答 | 0
0
个回答提问
how to create matrix with coordinates and calculate distance?
n = 3; ri=0.9 source = 1; destination = 3; Link=(n*(n-1))/2; c=2^Link; NN = toeplitz(Link+1:-1:2) mask = logical(fliplr(di...
3 years 前 | 2 个回答 | 0
2
个回答提问
how to calculate interference?
o node1 node 2 o o node 3 if the above figure three nodes ...
3 years 前 | 0 个回答 | 0
0
个回答提问
how to caculate distance?
o node1 node 2 o o node 3 if the above figure three nodes a...
3 years 前 | 1 个回答 | 0
1
个回答提问
how to generate path matrix?
n=3;ri=0.9;lamda=0.7; config = dec2bin(0:2.^L-1)-'0'; 12 13 23 0 0 0 0 0 1 ...
3 years 前 | 0 个回答 | 0
0
个回答提问
how to generate code?
n = 3; ri=0.9;lamda=0.7; config = dec2bin(0:2.^L-1)-'0'; nl = sum(config,2); nu = n-nl; P = lamda.^nl .* (1-lamda).^nu; no...
3 years 前 | 0 个回答 | 0
0
个回答提问
how to evaluate?
n= 3;ri=0.9; L=(n*(n-1))/2; configuration = dec2bin(0:(2^L-1))-'0'; source n=1; destination n=3; m = limit on intermediate ...
3 years 前 | 1 个回答 | 0
1
个回答提问
how to generate?
format long g nodes = 10; lamda = 0.7; bits = dec2bin(0:2^nodes-1)-'0'; nl = sum(bits,2); nu = nodes-nl; P = lamda.^nl .*...
3 years 前 | 1 个回答 | 0
1
个回答提问
how to create matrix?
node = 3; i want this matrix logically 0 1 1 1 0 1 1 1 0 please help to g...
3 years 前 | 2 个回答 | 0
2
个回答提问
how to generate code?
procedure to simulate link status algarithm. for i = 1,2,...,n for j = i+1,...,n test - select random number from uniform dis...
3 years 前 | 0 个回答 | 0
0
个回答提问
how to write algorithm for code?
node = 3; Link = (node-1)*node/2 NN = toeplitz(Link+1:-1:2); mask = logical(fliplr(diag(ones(1,Link-1),-1))); NN(mask) = 1; ...
3 years 前 | 0 个回答 | 0
0
个回答提问
how to generate code ?
node = 3; Link = (node-1)*node/2 NN = toeplitz(node+1:-1:2); mask = logical(fliplr(diag(ones(1,node-1),-1))); NN(mask) = 1; ...
3 years 前 | 1 个回答 | 0
1
个回答提问
solution for algorithm to link status?
nodes = 3; m = 0.7 for i = 1:nodes for j = i+1:nodes test = unifrnd(0,1) if ni = 1 nj = 1:nodes...
3 years 前 | 1 个回答 | 0
1
个回答提问
how to simulate link status
for i = 1,2,...,n for j = i+1,...,n test - select random number from uniform distribution between (0,1) if (test<=;λ∩ni =...
3 years 前 | 0 个回答 | 0
0
个回答提问
how to create a matrix in matlab?
L12 L13 L23 0 0 0 0 0 1 0 1 0 0 1 1 1 ...
3 years 前 | 3 个回答 | 0
3
个回答提问
How binary Random number generation upto n nodes ?
i was do this clc; clear all; close all; % Link is (n-1)*node/2 node = 3; offset = 1; L = (node-offset)*node/2; c =2^L; ...
3 years 前 | 1 个回答 | 0