Write a syntax to plot a 2D graph of function 1/( 2x^2 - 1).
古いコメントを表示
Code
2 件のコメント
dpb
2020 年 3 月 1 日
Use "dot" operators.
Image Analyst
2020 年 3 月 1 日
That is a 1-D signal. What do you mean by 2-D graph? You mean just a regular plot of a 1-D signal? Or do you want some kind of image or surface plot where that x-function varies along each of the x and y directions?
回答 (1 件)
Thiago Henrique Gomes Lobato
2020 年 3 月 1 日
x = 1:10;
y = 1./(2*x.^2-1);
figure,plot(x,y)
カテゴリ
ヘルプ センター および 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!