How to plot a linear function in using for loop in matlab
이전 댓글 표시
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
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!