CVX optimization problem, radar signal( Golden code)

조회 수: 6 (최근 30일)
ahmed youssef
ahmed youssef 2017년 4월 7일
댓글: xiaopa 2019년 4월 22일
Hi there, I have a problem for optimizing sidelobes of Golden code-127 after mismatched filter.
I have just 3 constraints.
first one to neglect trivial solution( work well).
The second for optimizaing sidelobe(work well).
the last one to maintain Loss in Power Gain (LPG) at somepoint.
if I comment the last constrain it gives me signal with sidelobe reduced by 1 dB.
if I put it, it gives me unfeasible solution. where is the mistake??
cvx_begin
variables q(127,1) t
minimize t
subject to
(s'*q)==(s'*s);
for i=1:length(x_new1(:,1))
(q'*(x_new1(i)')*(x_new1(i))*q)<=t;
end
q'*q <=alpha*(s)*s' ;
cvx_end;
  댓글 수: 2
Walter Roberson
Walter Roberson 2017년 4월 7일
Note that cvx is a third party toolbox
xiaopa
xiaopa 2019년 4월 22일
Why can't i solve the value of q?

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

답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by