Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

trying to output mean values that were calculated into excel.

1 visualización (últimos 30 días)
isamh
isamh el 15 de Oct. de 2020
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
i have about 40 values that were calcualted but would only like to output 10 out of the 40. i calculated the mean, Standard deviation and addition, how would i only take the mean values and output them into excel?
  3 comentarios
isamh
isamh el 15 de Oct. de 2020
so if i have Mean_1 - Mean_10, how would i get a table with the values under those variables?
isamh
isamh el 15 de Oct. de 2020
i want to do an excel sheet that is 3x10
mean_speed mean_force mean_power
mean_1
.
.
.
mean_10

Respuestas (1)

KSSV
KSSV el 15 de Oct. de 2020
May be you want to find the mean for every four elements and get 10 means. See the below:
A = rand(1,40) ; % random data for demo
M = mean(reshape(A,10,[]),2) ; % reshape and get mean
If you want t0 select any 10 elements randomly, use:
A = rand(1,40) ;
M = A(randperm(40,10)) ;
If you want to select first 10 elements
A = rand(1,40) ;
M = A(1:10) ;
Use writetable, xlswrite to write array M into xls file.
  3 comentarios
KSSV
KSSV el 15 de Oct. de 2020
Read about table. It is easy to get table.
isamh
isamh el 15 de Oct. de 2020
i did the table, how can i get them ontop of each other?

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by