Borrar filtros
Borrar filtros

Write a syntax to plot a 2D graph of function 1/( 2x^2 - 1).

1 visualización (últimos 30 días)
Depak Singh
Depak Singh el 1 de Mzo. de 2020
Comentada: Image Analyst el 1 de Mzo. de 2020
Code
  2 comentarios
dpb
dpb el 1 de Mzo. de 2020
Use "dot" operators.
Image Analyst
Image Analyst el 1 de Mzo. de 2020
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?
Is this homework? If so read this link.

Iniciar sesión para comentar.

Respuestas (1)

Thiago Henrique Gomes Lobato
Thiago Henrique Gomes Lobato el 1 de Mzo. de 2020
x = 1:10;
y = 1./(2*x.^2-1);
figure,plot(x,y)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by