Random numbers around y-values
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Niklas Kurz
el 5 de Jun. de 2020
Comentada: Ameer Hamza
el 7 de Jun. de 2020
Hello, I've got a set of y-values. I'd like Matlab to plot random numbers around these y-values (max difference:15%). For you info: y values are given in a .txt file (let's say 100x1). Thx in advance
0 comentarios
Respuesta aceptada
Ameer Hamza
el 6 de Jun. de 2020
Try this
x = 1:100;
y = log(x);
noise = (2*rand(size(y))-1).*0.15.*y;
y_noise = y + noise;
plot(x, y, 'r', x, y_noise, 'b+')
Más respuestas (0)
Ver también
Categorías
Más información sobre Annotations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!