How to find/present all of the grid points xi, where xi = 2+(i-1)*2 for 0<=i<=n.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
kingsley
el 15 de Abr. de 2017
Comentada: Star Strider
el 15 de Abr. de 2017
I'm trying to figure out how to display the value of from x(0) to x(n)
0 comentarios
Respuesta aceptada
Star Strider
el 15 de Abr. de 2017
This vectorises easily enough:
i = 0:7;
xi = 2+(i-1)*2
xi =
0 2 4 6 8 10 12 14
Am I not understanding something in your Question?
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements 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!