Skip to content

Instantly share code, notes, and snippets.

@l337quez
Created May 9, 2015 02:25
Show Gist options
  • Save l337quez/ba6de2214c535339f94d to your computer and use it in GitHub Desktop.
Save l337quez/ba6de2214c535339f94d to your computer and use it in GitHub Desktop.
Manipulacion de Vectores
%Guardar un vector en Variables
a=[2 3];
b=a(1);
c=a(2);
% Por lo tanto el primer campo del vector sera asignado a la
%variable "a" y el segundo campo a la variable "b"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment