Dot indexing not supprted for variables of this type.

조회 수: 1 (최근 30일)
prateek bhadauria
prateek bhadauria 2019년 7월 31일
댓글: Adidev Sharma 2020년 2월 10일
i am facing issue while i am running my code
for l=1:1:param_num_paths
gamma_x=1j*kd*sin(params.DoD_theta(l)*ang_conv)*cos(params.DoD_phi(l)*ang_conv); % showed error in this line
gamma_y=1j*kd*sin(params.DoD_theta(l)*ang_conv)*sin(params.DoD_phi(l)*ang_conv);
gamma_z=1j*kd*cos(params.DoD_theta(l)*ang_conv);
gamma_comb=Mxx_Ind*gamma_x+Myy_Ind*gamma_y + Mzz_Ind*gamma_z;
array_response=exp(gamma_comb);
delay_normalized=params.ToA(l)/Ts;
channel=channel+array_response*sqrt(params.power(l)/ofdm_num_subcarriers)*exp(1j*params.phase(l)*ang_conv)*exp(-1j*2*pi*(k/ofdm_num_subcarriers)*delay_normalized);
end
i already defined the respective values which is used in this code , but when i am running it gives an error " Dot indexing is not supported for variables of this type".
  댓글 수: 3
Image Analyst
Image Analyst 2019년 7월 31일
Also, put before that code this code:
whos params
params
and tell us what you see in the command window.
prateek bhadauria
prateek bhadauria 2019년 7월 31일
Actually it is program where a function is defined by various parameters
function [channel]= here all the parameters are defined which i mentioned below
params=[3,4,5,6];
num_ant_x=1;
num_ant_y=32;
num_ant_z=8;
BW=0.5;
param_num_paths=25;
ofdm_num_subcarriers=1024;
output_subcarrier_downsampling_factor=1;
output_subcarrier_limit=64;
antenna_spacing_wavelength_ratio=0.5;
kd=2*pi*antenna_spacing_wavelength_ratio;
ang_conv=pi/180;
Ts=1/BW;
Mx_Ind=0:1:num_ant_x-1;
My_Ind=0:1:num_ant_y-1;
Mz_Ind=0:1:num_ant_z-1;
Mxx_Ind=repmat(Mx_Ind,1,num_ant_y*num_ant_z)';
Myy_Ind=repmat(reshape(repmat(My_Ind,num_ant_x,1),1,num_ant_x*num_ant_y),1,num_ant_z)';
Mzz_Ind=reshape(repmat(Mz_Ind,num_ant_x*num_ant_y,1),1,num_ant_x*num_ant_y*num_ant_z)';
M=num_ant_x*num_ant_y*num_ant_z;
k=0:output_subcarrier_downsampling_factor:output_subcarrier_limit-1;
num_sampled_subcarriers=length(k);
channel=zeros(M,num_sampled_subcarriers);
and after these commands the for loop section was written which i was posted as my query.
Snapshot of command window - it gives the error "dot indexing is not supported for variables of this type".

댓글을 달려면 로그인하십시오.

채택된 답변

Bob Thompson
Bob Thompson 2019년 7월 31일
You're getting the error because you're calling params like a structure, 'params.DoD_phi(1),' but you previously defined params as a simple double matrix.
  댓글 수: 4
prateek bhadauria
prateek bhadauria 2019년 8월 3일
Yes it is working , thank you@Guillaume@Bob Nbob .
Adidev Sharma
Adidev Sharma 2020년 2월 10일
Can you specify what you did to remove the error or please post the updated code

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by