
Not Really sure how to go about plotting this?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hudson Harrell
le 27 Sep 2020
Réponse apportée : Image Analyst
le 27 Sep 2020
for x=0:0.01:6
y=x.^2+2*x-10 ;
if abs(y) <0.05 %Tolerance
fprintf('the root is %g \n' ,x)
break
end
end
0 commentaires
Réponse acceptée
Image Analyst
le 27 Sep 2020
Try using roots() - the function meant for doing that:
x = linspace(-6, 6, 1000);
y = x.^2 + 2 * x - 10;
plot(x, y, 'b-', 'LineWidth', 2);
grid on;
r = roots([1,2,-10])
% Make black line for x axis;
yline(0, 'LineWidth', 2);
% Make vertical lines at roots
xline(r(1), 'LineWidth', 2, 'Color', 'r');
xline(r(2), 'LineWidth', 2, 'Color', 'r');
xlabel('x', 'FontSize', 18);
ylabel('t', 'FontSize', 18);
caption = sprintf('Roots at %.2f and %.2f', r(1), r(2));
title(caption, 'FontSize', 18);

0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical 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!