Azzera filtri
Azzera filtri

Help me about plot y = 1/x

18 visualizzazioni (ultimi 30 giorni)
Nguyen Trong Nhan
Nguyen Trong Nhan il 21 Dic 2013
Risposto: Shreedhar Sarda il 15 Gen 2022
I want to plot the graph y = 1/x. I do in command window :
syms x y
x=0,0.1,1;
y=1/x;
plot(x,y)
I appear the error like this:
??? Error using ==> mldivide Matrix dimensions must agree
could you please help me repair this error to plot the graph y = 1/x. thanks

Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 21 Dic 2013
x=0:0.1:1;
y=1./x;
plot(x,y)
  5 Commenti
Sandor Fogassy
Sandor Fogassy il 11 Gen 2017
Thank you.
Giuseppe Degan Di Dieco
Giuseppe Degan Di Dieco il 9 Ott 2021
Thank you mate.

Accedi per commentare.

Più risposte (1)

Shreedhar Sarda
Shreedhar Sarda il 15 Gen 2022
Plot the function y=1/x in domain -2 to 2. At what point this function is not continuous?

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Tag

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by