Afficher commentaires plus anciens
How I do a graph of 𝑦 = 2𝑐𝑜𝑠3𝑥 ?
Réponses (2)
Image Analyst
le 16 Mai 2021
numPoints = 1000;
x = linspace(-3*pi, 3 * pi, numPoints);
y = 2 * cos(3 * x);
plot(x, y, 'b-', 'LineWidth', 2);
grid on;
xlabel('x', 'FontSize', 18);
ylabel('y', 'FontSize', 18);

Alan Stevens
le 16 Mai 2021
help plot
Catégories
En savoir plus sur Startup and Shutdown 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!