Add white noise with 0 mean and 1 std
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Yovel
le 28 Déc 2022
Commenté : Walter Roberson
le 28 Déc 2022
Hello,
This is my equations.
w(k) is white noise 0 mean and 0.1 std.
how do i write w(k) ?
syms x1 x2
for k=1:1:100
if k==1
x1(k)=1;
x2(k)=1;
end
x1(k+1)=x1(k)+(exp(-k))*x2(k)+w(k);
x2(k+1)=0.95*x2(k);
plot(k,x1(k),'.'); hold on
end
0 commentaires
Réponse acceptée
Walter Roberson
le 28 Déc 2022
w = @(k) randn(size(k)) ;
2 commentaires
Image Analyst
le 28 Déc 2022
w = @(k) randn(size(k)) ;
% Generate an image
k = ones(15, 20);
noisyImage = w(k)
imshow(noisyImage, []);
axis('on', 'image');
fprintf('Mean = %g, StdDev = %g.\n', mean2(noisyImage), std2(noisyImage))
Walter Roberson
le 28 Déc 2022
w = @(k) randn(size(k)) ;
syms x1 x2
for k=1:1:100
if k==1
x1(k)=1;
x2(k)=1;
end
x1(k+1)=x1(k)+(exp(-k))*x2(k)+w(k);
x2(k+1)=0.95*x2(k);
plot(k,x1(k),'.'); hold on
end
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Calculus 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!

