Arrange column vetors into table
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Panos Kerezoudis
el 19 de Abr. de 2023
Comentada: Star Strider
el 19 de Abr. de 2023
Hi!
I used the findpeaks function in matlab to find local maxima ('peaks') in a vector and their indices ('locs').
I would like to arrange the two outputs in a table. I used the table function to merge them, but this is what I get, instead of numbers.
I tried converting the variables to num but i didnt help.
Any thoughts?
Thx in advance!

0 comentarios
Respuesta aceptada
Star Strider
el 19 de Abr. de 2023
You simply need to transpose the row vectors to column vectors.
That is best done before creating the table, for example —
peaks = rand(1,11)
locs = sort(randi(25,1,11))
peaks = peaks(:)
locs = locs(:)
A = table(peaks,locs)
.
2 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!