Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
x is 521*1 vector.i wanna to access x values except the positions of 1:16:512.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
x=rand(512,1);
p=1:16:512;
disp(x(p)) % it displays 1 value,17 value like that
i want to display the remainig positions value
0 Commenti
Risposte (1)
the cyclist
il 31 Dic 2017
Here is one way:
x=rand(512,1);
p=1:16:512;
q=setdiff(1:512,p);
disp(x(q))
0 Commenti
Questa domanda è chiusa.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!