Borrar filtros
Borrar filtros

what does 1 indicate in f=100:1:400?

3 visualizaciones (últimos 30 días)
monali
monali el 7 de Oct. de 2012
my program is f=100:1:400 X=2*3.14*f Z=r+j*X plot(f,Z)
  3 comentarios
monali
monali el 7 de Oct. de 2012
it simply means that the middle value is just increment only, right?
Matt J
Matt J el 7 de Oct. de 2012
yes.

Iniciar sesión para comentar.

Respuesta aceptada

the cyclist
the cyclist el 7 de Oct. de 2012
Editada: the cyclist el 7 de Oct. de 2012
The statement
>> f = 100:1:400
tells MATLAB to create a vector of values from 100 to 400, with a spacing of 1. Similarly,
>> f = 100:100:400
would result in
>> f = [100 200 300 400]
You can read a bit more by typing
>> help :

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by