Computing the Standard Deviation of Values in a column in Matlab
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jana Sarran
el 25 de Abr. de 2023
Comentada: Torsten
el 27 de Abr. de 2023
Say I have the following dataset:

I would like to compute that standard deviation using ONLY SPEED values from ONLY 15 rows at a time in the table shown. How would I go about executing this in Matlab? Is there a specific code that can simplify this task?
2 comentarios
Dominique Gorissen
el 25 de Abr. de 2023
I am assuming that you already have this table imported into matlab? If not use the read() command to do so.
Then first convert your desired column into an array and then use std to calculate the standard deviation
SpeedArray=table2array(Table(4,:));
StandardDeviation=std(SpeedArray(1:15));
Respuesta aceptada
Dyuman Joshi
el 25 de Abr. de 2023
out = std(tablename.Speed(1:15))
5 comentarios
Torsten
el 27 de Abr. de 2023
Isn't a "moving standard deviation" required, i.e. standard deviation of rows 1-15, 2-16, 3-17 etc ?
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!