how to set different limit for plotting graph

3 visualizaciones (últimos 30 días)
raqib Iqbal
raqib Iqbal el 17 de Jul. de 2020
Comentada: raqib Iqbal el 17 de Jul. de 2020
what syntaxes is to use if i want x axis limit 10 to 50 with gap of 10
and y axis limit 0.86 to 1.00 with a gap of 0.02
& actually i wanna plot this (but giving error)
x=[10, 20 ,30,40,50]
y=[0.987, 0.972, 0.958, 0.938, 0.919]
  2 comentarios
KSSV
KSSV el 17 de Jul. de 2020
Read about xlim, ylim, xticks, yticks.
raqib Iqbal
raqib Iqbal el 17 de Jul. de 2020
clear all
close all
xlim=10:10:50;
ylim=0.86:0.02:1.00;
x=[10 20 30 40 50];
y=[0.987, 0.972, 0.958, 0.938, 0.919];
plot(x,y)
giving error

Iniciar sesión para comentar.

Respuestas (0)

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by