How to plot a linear function in using for loop in matlab
Mostrar comentarios más antiguos
hey guys, thankx in advance for help. i need your help, i have been working on plotting matlab graphs using for loop control structure, when ever i execute my code it is only plotting one dot. the idea is i want plot a strait line
here is my code(script) slope = input('\nEnter the slope:'); y_intercept = input('\nEnter the y_intercept:'); no_of_points = input('\nEnter no_of_points:'); [x,y] = findCoodinates(slope,y_intercept); plot(x,y, 'ko-'); xlabel('x-axis'); ylabel('y-axis'); legend('First Graph'); axis([0 20 -5 30])
here is the (function) function [x,y] = findCoodinates(x,y) for i = 1 x(i) = i; y = x(i)*m + c; end
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!