Constucting an array in column form

1 visualización (últimos 30 días)
Ian
Ian el 25 de En. de 2014
Comentada: Amit el 25 de En. de 2014
Construct an array a (in column form) made of 17 (equally-spaced) values between 17 and 289.

Respuesta aceptada

Amit
Amit el 25 de En. de 2014
A = (linspace(17,289,17))';
  3 comentarios
Azzi Abdelmalek
Azzi Abdelmalek el 25 de En. de 2014
A = linspace(17,289,17)'
Amit
Amit el 25 de En. de 2014
The extra brackets are just habit, due to few times issue with 1:10' and (1:10)'!

Iniciar sesión para comentar.

Más respuestas (1)

Mischa Kim
Mischa Kim el 25 de En. de 2014
Editada: Mischa Kim el 25 de En. de 2014
Use
c = linspace(17, 289, 19)
This results in 19 data points, including the two end points, 17 and 289. To switch between row and column vector simply use the "prime"
c'

Categorías

Más información sobre Matrix Indexing 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