simple plotting in matlab

x=1:1:30 h=70 y=h/x
i understand they are unequal in length but how would i plot it dividing 70 by x one at a time to plot

 Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 4 de Abr. de 2014
Editada: Azzi Abdelmalek el 4 de Abr. de 2014

0 votos

x=1:1:30
h=70
y=h./x
plot(x,y)

4 comentarios

nida
nida el 4 de Abr. de 2014
Editada: Azzi Abdelmalek el 4 de Abr. de 2014
thanks, but what if i have
s=1,58,4,2,4
with
x=1:1:30
h=70
y=h./s
Azzi Abdelmalek
Azzi Abdelmalek el 4 de Abr. de 2014
What is your question?
nida
nida el 4 de Abr. de 2014
Editada: nida el 4 de Abr. de 2014
my question is that keeping x-axis same i want to plot y by dividing h with specific numbers...s.
Azzi Abdelmalek
Azzi Abdelmalek el 4 de Abr. de 2014
x and y must have the same length

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Etiquetas

Preguntada:

el 4 de Abr. de 2014

Comentada:

el 4 de Abr. de 2014

Community Treasure Hunt

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

Start Hunting!

Translated by