Effacer les filtres
Effacer les filtres

calculate boolinger bandwidth using matlab function

4 vues (au cours des 30 derniers jours)
Luca Re
Luca Re le 5 Nov 2023
Commenté : Star Strider le 6 Nov 2023
hi..I had a problem relating to the calculation of the boolinger band Using the matlab function (bollinger) is the result equal to the calculation of the standard deviation of its n-period mean? Unfortunately I can't do this test because I need the stdev2 function which is a paid package
  2 commentaires
Walter Roberson
Walter Roberson le 5 Nov 2023
Which software package is stdev2 part of? It does not appear to be a Mathworks function
Luca Re
Luca Re le 5 Nov 2023

Connectez-vous pour commenter.

Réponse acceptée

Star Strider
Star Strider le 5 Nov 2023
Modifié(e) : Star Strider le 5 Nov 2023
The std2 function takes the standard deviation of all the elements in an array (it only has one argument, that being the entire array). You might be able to create your own version of it with:
std2 = @(A) std(A,[],'all');
This has been possible since R2018b.
EDIT —
Since the bollinger function has to have access to std2, use:
function sda = std2(A)
sda = std(A,[],'all');
end
instead, and store it as std2.m on your MATLAB search path where bollinger can find it.
.
  10 commentaires
Luca Re
Luca Re le 6 Nov 2023
the original...std2 requires image processing toolbox
Star Strider
Star Strider le 6 Nov 2023
As I mentioned originally, you need to save this function:
function sda = std2(A)
sda = std(A,[],'all');
end
as std2.m on your MATLAB search path so that all calls to it can find it.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Image Segmentation and Analysis 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