Borrar filtros
Borrar filtros

Why is my linspace not working

20 visualizaciones (últimos 30 días)
Ryan Scott
Ryan Scott el 14 de Mayo de 2020
Respondida: Image Analyst el 14 de Mayo de 2020
x = linspace(2.5,5.8333,0.41667)
I enter this into mat lab, but for some reason this is what returns
1×0 empty double row vector
Im not sure why this is happening.

Respuestas (2)

Image Analyst
Image Analyst el 14 de Mayo de 2020
Cris explained it well. Perhaps you want this instead:
x = 2.5 : 0.41667 : 5.8333

Cris LaPierre
Cris LaPierre el 14 de Mayo de 2020
What is your expected output?
The 3rd input is the number of points you want the resulting vector to have. As such it must be a positive integer. If you do not specify a 3rd input, you get 100 points. Read the documentation for linspace to learn more.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by