krishnagupta023
Newbie level 1
i am trying to run matlab code which is as below
%------------modulation for n=1 at antenna 0------------------
if (real(sn)>= 0 )
tet11=0;
else (real(sn)<= 0 );
tet11=1;
end
but while running it's showing error saying
" <= produces a value that might be unused "
can anyone help me to debug this error please...
%------------modulation for n=1 at antenna 0------------------
if (real(sn)>= 0 )
tet11=0;
else (real(sn)<= 0 );
tet11=1;
end
but while running it's showing error saying
" <= produces a value that might be unused "
can anyone help me to debug this error please...