Why is my plot plotting blank?
Afficher commentaires plus anciens
u = 5;
E = 1000;
w = [0:1:100000];
z=1+((w*u)/E).^2
A = w*u/sqrt((z))
figure
plot(w, A); % Plot
% As always, label your graphs
xlabel('Frequency [rad/s]');
ylabel('Amp[Pa]');
title('Amplitude vs Frequency');
My Command Window shows no errors. So I don't understand what is wrong.
Réponse acceptée
Plus de réponses (1)
David Goodmanson
le 9 Nov 2016
Modifié(e) : David Goodmanson
le 9 Nov 2016
0 votes
x
Catégories
En savoir plus sur Line Plots 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!