How to make a summation series with a dataset
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Thijs Van Dommelen
il 18 Set 2021
Commentato: Thijs Van Dommelen
il 24 Set 2021
Hi, i'd like to know how i can implement a dataset in a summation like this
, where x_i is a number out of a 1000x1 table and Vs is known
, where x_i is a number out of a 1000x1 table and Vs is known0 Commenti
Risposta accettata
Srijith Kasaragod
il 21 Set 2021
The following function shows one possible approach to solve this problem . I assume that the dataset contains 1000x1 double values as a table.
function res= f(dataset, Vs)
y=dataset.var; %var is name of the column containing elements
n=length(y);
res= sqrt(sum((y-Vs).^2)./n);
end
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Tables in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!