フィルターのクリア

How do I plot first order function? New to Matlab

3 ビュー (過去 30 日間)
Alexandros
Alexandros 2016 年 5 月 6 日
コメント済み: Azzi Abdelmalek 2016 年 5 月 6 日
Hi! New to Matlab so I have no knowledge. I have some knowledge in C++ and Java and C.
I want to plot the function y=3x+2 So I guess I have to declare 2 variables x and y and plot y for a range of values of x. How do I do this? I am running Matlab2015a-SP1

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2016 年 5 月 6 日
編集済み: Azzi Abdelmalek 2016 年 5 月 6 日
x=0:0.01:20
y=3*x+2
plot(x,y)
Or use fplot
y=@(x) 3*x+2;
range=[0 20];
fplot(@(x) y(x),range)
  2 件のコメント
Alexandros
Alexandros 2016 年 5 月 6 日
What is the fplot?
Azzi Abdelmalek
Azzi Abdelmalek 2016 年 5 月 6 日

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by