Understanding the coding in Matlab

2 vues (au cours des 30 derniers jours)
Matpar
Matpar le 1 Juil 2019
Hi I am having a challenge trying to understand the following code!!
Can a professional explain this for me please? It maybe simple but i need to get this asap!
I am constantly seeing this and its a tad difficult to understand!
Oh! and if you can point me in the direction to do some reading on this it will be immensly apprecited!
Thanks in advance for acknowledging my request!
t=mean(gbd(:));

Réponse acceptée

Star Strider
Star Strider le 1 Juil 2019
This line:
t=mean(gbd(:));
converts ‘gbd’ (that is likely a matrix) into a column vector, and then takes the mean of the vector. Most functions in MATLAB that can have matrix arguments require a specific dimension to calculate the result (here, mean) although 'all' is available in the last two releases. Creating a column vector using the (:) subscript convention takes the mean of the entire matrix, avoiding the need to do two nested mean calls.

Plus de réponses (0)

Catégories

En savoir plus sur Convert Image Type 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!

Translated by