Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
how to create relation b/w two vector by scrambling vector .let x& A be two vectors and T is formed by scrambling vectors. s.that A(i)=x(t(i)
조회 수: 2 (최근 30일)
이전 댓글 표시
x=0.3;
p=0.343;
for n=2:5;
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
A=sort(x);
T= scrambled (x,A)
댓글 수: 1
Walter Roberson
2018년 6월 28일
What is the difference between this and https://www.mathworks.com/matlabcentral/answers/407786-how-to-create-a-relation-b-w-two-vector-by-scrambling-of-vector-let-two-vector-r-s-then-scrambled ?
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!