Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

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

1 vue (au cours des 30 derniers jours)
Sultan Mehmood
Sultan Mehmood le 5 Juil 2018
Clôturé : MATLAB Answer Bot le 20 Août 2021
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);

Réponses (1)

Matt J
Matt J le 5 Juil 2018
[S,T]=sort(x);

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by