フィルターのクリア

channel model for body area network ieee 802.15.6

13 ビュー (過去 30 日間)
dileep narla
dileep narla 2011 年 9 月 26 日
コメント済み: Saddiqa Javaid 2022 年 5 月 30 日
hai, i am doing work on human motion tracking using ultra wideband . Can any one help me about matlab code for channel model relating to body area networks ( i.e, ieee 802.15.6).
  1 件のコメント
Walter Roberson
Walter Roberson 2011 年 9 月 26 日
At last, someone doing something different!

サインインしてコメントする。

回答 (4 件)

Ib El
Ib El 2016 年 7 月 10 日
Hi dileep narla , I am doing the same thing : WBAN UWB, can you share with us what did you do/find please !
  2 件のコメント
Leandro Ávila
Leandro Ávila 2016 年 8 月 3 日
編集済み: Leandro Ávila 2016 年 8 月 3 日
ARAVIND M T
ARAVIND M T 2017 年 7 月 20 日
thank u soo much sir

サインインしてコメントする。


ARAVIND M T
ARAVIND M T 2017 年 7 月 27 日
編集済み: Walter Roberson 2017 年 7 月 27 日
when I tried to run the matlab code it show error as "Function definitions are not permitted in this context" .Please give me the idea to rectify the error.I will be gratefull for your act of kindness
function [h, t, n_p] = uwb_hospban_chan_CM4(num_channels, body_direction)
% Function for getting channel realizations for UWB Hospital BAN channel CM4.
% Igor Dotlic (dotlic@nict.go.jp) March 2009.
% Input variables
% num_channels - number of channel realizations
% body_direction= 1: 0 deg, 2: 90 deg, 3: 180 deg, 4: 270 deg
% Output variables
% h - comlex multipath amplitude responses
% t - times of multipath arrivals (ns)
% n_p - number of paths for each channel realization
% Fixed model parameters
L_mean = 400; % mean number of arrival paths
lambda_inv= 0.50125; % mean time between arrivals (ns)
% Model parameters that depend on body direction
if body_direction == 1
Gamma = 44.6346; % (ns)
k_abs = 5.111739;
sigma = 7.30;
elseif body_direction == 2
Gamma = 54.2868; % (ns)
k_abs = 4.348859975;
sigma = 7.08;
elseif body_direction == 3
Gamma = 53.4186; % (ns)
k_abs = 3.638084447;
sigma = 7.03;
elseif body_direction == 4
Gamma = 83.9635; % (ns)
k_abs = 3.983472211;
sigma = 7.19;
end
% Calculating number of paths
n_p = poissrnd(L_mean, 1, num_channels);
for k_chan = 1:num_channels
n_p(k_chan) = max(n_p(k_chan), 1);
end
% Maximum number of paths
n_p_max = max(n_p);
% Allocating memory for channel realizations
h = zeros(n_p_max, num_channels);
t = zeros(n_p_max, num_channels);
% Calculating path arrival times
t_dif = exprnd(lambda_inv, num_channels, n_p_max-1);
for k_chan = 1:num_channels
t(2:n_p(k_chan),k_chan) = cumsum(t_dif(k_chan, 1:n_p(k_chan)-1));
end
% Calculating path levels
for k_chan = 1:num_channels
h(1,k_chan) = exp(i*rand*2*pi)*sqrt(10^(sigma*randn/10));
% Paths 2 onwards
for k_p = 2:n_p(k_chan)
h(endk_p, k_chan) = exp(i*rand*2*pi)*...
sqrt(exp(-t(k_p,k_chan)/Gamma-k_abs)*10^(sigma*randn/10));
end
% Normalizing current PDP realization (may be commented out)
h(:,k_chan) = h(:,k_chan)/norm(h(:,k_chan));
end
  4 件のコメント
Irfan Ahmad Khan
Irfan Ahmad Khan 2020 年 11 月 3 日
Any one can provide me code of analytical model as DTMC of Wireless body area network
if possible email me at this address <irfanniazi4243@gmail.com>
Deep sandhu
Deep sandhu 2021 年 3 月 23 日
i have resolved the problems of your code kindly contact on er.anilrawat1@gmail.com

サインインしてコメントする。


Mekathoti Vamsi kiran
Mekathoti Vamsi kiran 2019 年 5 月 30 日
Help needed - MATLAB - WBAN - FUZZY LOGIC
Please anyone give me/contact(vamsinittphd@gmail.com)
I want the code for above mentioned combination to implement my researchwork
Thanking you

ruchi chaurasia
ruchi chaurasia 2021 年 12 月 31 日
needed help.i tried to run this code but error occurs .kinldy help me out to get rid of this problem.this is showing in run time.
  4 件のコメント
Walter Roberson
Walter Roberson 2022 年 1 月 3 日
https://stackoverflow.com/questions/43458138/ieee-802-15-6-channel?rq=1 appears to have the relevant code (I cannot test it at the moment)
Saddiqa Javaid
Saddiqa Javaid 2022 年 5 月 30 日
i need simple wban matlab code can anyone help plz

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeDynamic System Models についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by