How to scatter plot a row of matrix against it's row number?

6 visualizzazioni (ultimi 30 giorni)
I have a cell array(400*3000), which has 3000 sequences, how do I plot only 170th row against row no. in a graph, the desired result is scatter plot at 170th position.
  2 Commenti
Star Strider
Star Strider il 25 Gen 2020
What is in the cell array?
Cell arrays can contain anything, so plotting the 170th row may not be straightforward.
Simran
Simran il 25 Gen 2020
Normal array will also work for my problem, all rows contain numbers normalized in 0 to 1.

Accedi per commentare.

Risposta accettata

KALYAN ACHARJYA
KALYAN ACHARJYA il 25 Gen 2020
Modificato: KALYAN ACHARJYA il 25 Gen 2020
data=rand(400,3000);
for i=1:170
scatter(repelem(i,3000),data(i,:));
hold on
end
??

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by