Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

how to create a relation b/w two vector a scrambling vector "T'' is formed. let two vector x & S then scramble vector T is formed.such that S(t)=x(t(i)).plzz help

조회 수: 2 (최근 30일)
x(1)=0.3;
p=0.343;
for n=2:9;
if x(n-1)>=0 & x(n-1)<=p
x(n)=x(n-1)/p;
else
x(n)=(1-x(n-1))/(1-p);
end
end
S=sort(x);

답변 (1개)

Matt J
Matt J 2018년 7월 5일

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by