diff options
author | AlburIvan <albur.ivan@outlook.com> | 2017-10-24 02:19:48 -0400 |
---|---|---|
committer | AlburIvan <albur.ivan@outlook.com> | 2017-10-24 02:19:48 -0400 |
commit | ce615ac9a27870abe2cba34f3f65721695504aec (patch) | |
tree | a7440d51a775e541c0de502477b66dff5d30be90 /es-es | |
parent | 5621c64a0928e939f493f6672fcb08953a581d00 (diff) |
Add translator to header
Diffstat (limited to 'es-es')
-rw-r--r-- | es-es/matlab-es.html.markdown | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/es-es/matlab-es.html.markdown b/es-es/matlab-es.html.markdown index d4b2dab1..99bee475 100644 --- a/es-es/matlab-es.html.markdown +++ b/es-es/matlab-es.html.markdown @@ -1,16 +1,17 @@ --- language: Matlab -filename: learnmatlab.mat +filename: learnmatlab-es.mat contributors: - ["mendozao", "http://github.com/mendozao"] - ["jamesscottbrown", "http://jamesscottbrown.com"] - ["Colton Kohnke", "http://github.com/voltnor"] - ["Claudson Martins", "http://github.com/claudsonm"] +translators: + - ["Ivan Alburquerque", "https://github.com/AlburIvan"] lang: es-es --- -MATLAB stands for MATrix LABoratory. It is a powerful numerical computing language commonly used in engineering and mathematics. -MATLAB significa MATrix LABoratory. Es un poderoso lenguaje de computacion numerica +MATLAB significa 'MATrix LABoratory'. Es un poderoso lenguaje de computación numérica comúnmente usado en ingeniería y matemáticas. If you have any feedback please feel free to reach me at [@the_ozzinator](https://twitter.com/the_ozzinator), or @@ -314,7 +315,7 @@ set(gca, 'XDir', 'reverse'); % reverse the direction of the x-axis % Para crear una figura que contenga varios ejes en posiciones de mosaico, use 'subplot' subplot(2,3,1); % seleccione la primera posición en una grilla de subtramas de 2 por 3 -plot(x1); title('First Plot') % trazar algo en esta posición +plot(x1); title('First Plot') % traza algo en esta posición subplot(2,3,2); % selecciona la segunda posición en la grilla plot(x2); title('Second Plot') % trazar algo allí |