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!