could anyone help me how to compute the mean square error between two cell.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
jaah navi
le 17 Juil 2021
Commenté : jaah navi
le 19 Juil 2021
I am having two cell A and B in the attached data.mat.
I want to compute the mean square error between A and B in data.mat.
Could anyone please help me on this.
2 commentaires
Yazan
le 17 Juil 2021
How are you defining the MSE for your data? Each cell of A and B is a N-by-2 vector.
Réponse acceptée
Walter Roberson
le 17 Juil 2021
cellfun(@(a,b) sqrt(sum(a(:)-b(:)).^2))
You had the wrong definition of mean square error.
10 commentaires
Walter Roberson
le 18 Juil 2021
Please show the output of the following:
cellfun(@(a)string(class(a)), A)
cellfun(@(a)string(class(a)), B)
I suspect your A and B are not cell array of double like you indicate here. Judging by some of your other posts, I suspect that you have a mix, that some of the entries are double and others are cell.
Plus de réponses (1)
jaah navi
le 18 Juil 2021
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!