Problem using the iv4() function, instrumental variable method
1 commentaire
Hi Elouan,
To address the variability issue and ensure more stable coefficient estimation, we need to modify the way noise is added to the system. One potential solution is to calculate the noise amplification factor 'k' based on the noise added in a more controlled manner.
% Calculate noise amplification factor 'k' based on the added noise 'e'
k = sqrt(SNR / var(e)) * 10^(-SNR/20);
b = k * e;
Y_noisy = Y_RLC_MC + b;By recalculating the noise amplification factor 'k' based on the added noise 'e' in a consistent manner, we can reduce the variability in coefficient estimation across multiple Monte Carlo realizations. This modification should lead to more stable and reliable coefficient results.
Hope this will help resolve your issue.
Réponses (0)
Catégories
En savoir plus sur Linear Model Identification dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!