How can I get my distance variable to be [0.1:0.7] to show as [0.1,0.2,0.3,0.4,0.5,0.6,0.7]
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
s=[(0.1):(0.7)]
s =
0.1000
this keeps only showing only 0.1 as the resultant.
1 comentario
Respuestas (2)
Star Strider
el 12 de Oct. de 2022
The default ‘step’ using the colon operator is 1, so the condition is immediately satisfied and only the first element appears.
An alternative —
s = linspace(0.1, 0.7, 7)
.
0 comentarios
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!