aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2011-02-10 11:43:41 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2011-02-10 11:43:41 +0000
commit1e820589666233846f0337a3ea6b1b02933aaf95 (patch)
treed50a5b59208c65c240c0f4b311b92aaaffb30acd
parenta7f0e1d1b50a6e9bbb8df2279d36ef33841cd487 (diff)
UTF-8 ified
svn path=/trunk/externals/iem/iemmatrix/; revision=14894
-rw-r--r--src/iemmatrix.c4
-rw-r--r--src/iemmatrix_binops.c2
-rw-r--r--src/iemmatrix_utility.c2
-rw-r--r--src/matrix.c2
-rw-r--r--src/mtx_abs.c2
-rw-r--r--src/mtx_add.c2
-rw-r--r--src/mtx_and.c2
-rw-r--r--src/mtx_atan.c2
-rw-r--r--src/mtx_bitand.c2
-rw-r--r--src/mtx_bitleft.c2
-rw-r--r--src/mtx_bitor.c2
-rw-r--r--src/mtx_bitright.c2
-rw-r--r--src/mtx_bspline.c2
-rw-r--r--src/mtx_check.c2
-rw-r--r--src/mtx_cholesky.c2
-rw-r--r--src/mtx_col.c2
-rw-r--r--src/mtx_cos.c2
-rw-r--r--src/mtx_dbtopow.c2
-rw-r--r--src/mtx_dbtorms.c2
-rw-r--r--src/mtx_diag.c2
-rw-r--r--src/mtx_diegg.c2
-rw-r--r--src/mtx_distance2.c4
-rw-r--r--src/mtx_egg.c2
-rw-r--r--src/mtx_element.c2
-rw-r--r--src/mtx_eq.c2
-rw-r--r--src/mtx_exp.c2
-rw-r--r--src/mtx_eye.c2
-rw-r--r--src/mtx_gauss.c2
-rw-r--r--src/mtx_ge.c2
-rw-r--r--src/mtx_gt.c2
-rw-r--r--src/mtx_int.c2
-rw-r--r--src/mtx_inverse.c2
-rw-r--r--src/mtx_isequal.c2
-rw-r--r--src/mtx_le.c2
-rw-r--r--src/mtx_log.c2
-rw-r--r--src/mtx_lt.c2
-rw-r--r--src/mtx_max2.c2
-rw-r--r--src/mtx_mean.c2
-rw-r--r--src/mtx_min2.c2
-rw-r--r--src/mtx_mul.c2
-rw-r--r--src/mtx_mul~.c2
-rw-r--r--src/mtx_neq.c2
-rw-r--r--src/mtx_not.c2
-rw-r--r--src/mtx_ones.c2
-rw-r--r--src/mtx_or.c2
-rw-r--r--src/mtx_pivot.c2
-rw-r--r--src/mtx_pow.c2
-rw-r--r--src/mtx_powtodb.c2
-rw-r--r--src/mtx_print.c2
-rw-r--r--src/mtx_prod.c2
-rw-r--r--src/mtx_rand.c2
-rw-r--r--src/mtx_resize.c2
-rw-r--r--src/mtx_reverse.c2
-rw-r--r--src/mtx_rmstodb.c2
-rw-r--r--src/mtx_roll.c2
-rw-r--r--src/mtx_row.c2
-rw-r--r--src/mtx_scroll.c2
-rw-r--r--src/mtx_sin.c2
-rw-r--r--src/mtx_size.c2
-rw-r--r--src/mtx_sub.c2
-rw-r--r--src/mtx_sum.c2
-rw-r--r--src/mtx_trace.c2
-rw-r--r--src/mtx_transpose.c2
-rw-r--r--src/mtx_zeros.c2
64 files changed, 66 insertions, 66 deletions
diff --git a/src/iemmatrix.c b/src/iemmatrix.c
index f554663..ea8f20c 100644
--- a/src/iemmatrix.c
+++ b/src/iemmatrix.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
@@ -19,7 +19,7 @@ void iemmatrix_setup(){
post("");
post("iemmatrix "VERSION);
post("\tobjects for manipulating 2d-matrices");
- post("\t(c) IOhannes m zmölnig, Thomas Musil, Franz Zotter :: iem, 2001-2005");
+ post("\t(c) IOhannes m zmölnig, Thomas Musil, Franz Zotter :: iem, 2001-2011");
post("\tcompiled "__DATE__" : "__TIME__);
post("");
diff --git a/src/iemmatrix_binops.c b/src/iemmatrix_binops.c
index 35356e9..9489e79 100644
--- a/src/iemmatrix_binops.c
+++ b/src/iemmatrix_binops.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/iemmatrix_utility.c b/src/iemmatrix_utility.c
index 553e308..5d3d208 100644
--- a/src/iemmatrix_utility.c
+++ b/src/iemmatrix_utility.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/matrix.c b/src/matrix.c
index 28aba21..80112d4 100644
--- a/src/matrix.c
+++ b/src/matrix.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_abs.c b/src/mtx_abs.c
index fb9e43f..51d7a43 100644
--- a/src/mtx_abs.c
+++ b/src/mtx_abs.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_add.c b/src/mtx_add.c
index 3522b77..d2013fd 100644
--- a/src/mtx_add.c
+++ b/src/mtx_add.c
@@ -4,7 +4,7 @@
* objects fand manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* Fand infandmation on usage and redistribution, and fand a DISCLAIMER OF ALL
diff --git a/src/mtx_and.c b/src/mtx_and.c
index e576fb4..39bef6f 100644
--- a/src/mtx_and.c
+++ b/src/mtx_and.c
@@ -4,7 +4,7 @@
* objects fand manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* Fand infandmation on usage and redistribution, and fand a DISCLAIMER OF ALL
diff --git a/src/mtx_atan.c b/src/mtx_atan.c
index 0da42f8..6d534f2 100644
--- a/src/mtx_atan.c
+++ b/src/mtx_atan.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_bitand.c b/src/mtx_bitand.c
index 61f4d0f..1bbd919 100644
--- a/src/mtx_bitand.c
+++ b/src/mtx_bitand.c
@@ -4,7 +4,7 @@
* objects fand manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* Fand infandmation on usage and redistribution, and fand a DISCLAIMER OF ALL
diff --git a/src/mtx_bitleft.c b/src/mtx_bitleft.c
index 1dc06c8..ee9c285 100644
--- a/src/mtx_bitleft.c
+++ b/src/mtx_bitleft.c
@@ -4,7 +4,7 @@
* objects fand manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* Fand infandmation on usage and redistribution, and fand a DISCLAIMER OF ALL
diff --git a/src/mtx_bitor.c b/src/mtx_bitor.c
index b5d2d38..0fa50b2 100644
--- a/src/mtx_bitor.c
+++ b/src/mtx_bitor.c
@@ -4,7 +4,7 @@
* objects fand manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* Fand infandmation on usage and redistribution, and fand a DISCLAIMER OF ALL
diff --git a/src/mtx_bitright.c b/src/mtx_bitright.c
index 8c08e44..377116a 100644
--- a/src/mtx_bitright.c
+++ b/src/mtx_bitright.c
@@ -4,7 +4,7 @@
* objects fand manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* Fand infandmation on usage and redistribution, and fand a DISCLAIMER OF ALL
diff --git a/src/mtx_bspline.c b/src/mtx_bspline.c
index 6bdd883..1b1acd7 100644
--- a/src/mtx_bspline.c
+++ b/src/mtx_bspline.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_check.c b/src/mtx_check.c
index d400624..1efc1fb 100644
--- a/src/mtx_check.c
+++ b/src/mtx_check.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_cholesky.c b/src/mtx_cholesky.c
index d717faf..f0f111f 100644
--- a/src/mtx_cholesky.c
+++ b/src/mtx_cholesky.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_col.c b/src/mtx_col.c
index 7386a9a..24eb98a 100644
--- a/src/mtx_col.c
+++ b/src/mtx_col.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_cos.c b/src/mtx_cos.c
index b9aa14b..543df28 100644
--- a/src/mtx_cos.c
+++ b/src/mtx_cos.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_dbtopow.c b/src/mtx_dbtopow.c
index 237c5ea..72e517b 100644
--- a/src/mtx_dbtopow.c
+++ b/src/mtx_dbtopow.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_dbtorms.c b/src/mtx_dbtorms.c
index aadb075..6cdefe3 100644
--- a/src/mtx_dbtorms.c
+++ b/src/mtx_dbtorms.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_diag.c b/src/mtx_diag.c
index f3586da..47cf59e 100644
--- a/src/mtx_diag.c
+++ b/src/mtx_diag.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_diegg.c b/src/mtx_diegg.c
index 0c17294..980bb25 100644
--- a/src/mtx_diegg.c
+++ b/src/mtx_diegg.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_distance2.c b/src/mtx_distance2.c
index 097151b..08a0961 100644
--- a/src/mtx_distance2.c
+++ b/src/mtx_distance2.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
@@ -17,7 +17,7 @@
mtx_distance2: gets the euclidian distances (squared) between 2 sets of n-dimensional vectors
*/
-/* -­------------------------------------------------------------- */
+/* -­------------------------------------------------------------- */
/* matrix math */
/* mtx_distance2 */
diff --git a/src/mtx_egg.c b/src/mtx_egg.c
index 5067a21..cd2a71b 100644
--- a/src/mtx_egg.c
+++ b/src/mtx_egg.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_element.c b/src/mtx_element.c
index ddd5a6f..c4233d7 100644
--- a/src/mtx_element.c
+++ b/src/mtx_element.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_eq.c b/src/mtx_eq.c
index d3a0dcc..ec8d30b 100644
--- a/src/mtx_eq.c
+++ b/src/mtx_eq.c
@@ -4,7 +4,7 @@
* objects fand manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* Fand infandmation on usage and redistribution, and fand a DISCLAIMER OF ALL
diff --git a/src/mtx_exp.c b/src/mtx_exp.c
index 65003d5..85a8a45 100644
--- a/src/mtx_exp.c
+++ b/src/mtx_exp.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_eye.c b/src/mtx_eye.c
index 9a87336..44ec98a 100644
--- a/src/mtx_eye.c
+++ b/src/mtx_eye.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_gauss.c b/src/mtx_gauss.c
index 139ea0f..d5d6c7d 100644
--- a/src/mtx_gauss.c
+++ b/src/mtx_gauss.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_ge.c b/src/mtx_ge.c
index 22354fb..6e0560a 100644
--- a/src/mtx_ge.c
+++ b/src/mtx_ge.c
@@ -4,7 +4,7 @@
* objects fand manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* Fand infandmation on usage and redistribution, and fand a DISCLAIMER OF ALL
diff --git a/src/mtx_gt.c b/src/mtx_gt.c
index 0be7d5a..2711f3b 100644
--- a/src/mtx_gt.c
+++ b/src/mtx_gt.c
@@ -4,7 +4,7 @@
* objects fand manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* Fand infandmation on usage and redistribution, and fand a DISCLAIMER OF ALL
diff --git a/src/mtx_int.c b/src/mtx_int.c
index d771f1a..3ec769a 100644
--- a/src/mtx_int.c
+++ b/src/mtx_int.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_inverse.c b/src/mtx_inverse.c
index f8c1d6a..2b81d81 100644
--- a/src/mtx_inverse.c
+++ b/src/mtx_inverse.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_isequal.c b/src/mtx_isequal.c
index ded85c7..7d92f9c 100644
--- a/src/mtx_isequal.c
+++ b/src/mtx_isequal.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_le.c b/src/mtx_le.c
index d4df459..fcfdb10 100644
--- a/src/mtx_le.c
+++ b/src/mtx_le.c
@@ -4,7 +4,7 @@
* objects fand manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* Fand infandmation on usage and redistribution, and fand a DISCLAIMER OF ALL
diff --git a/src/mtx_log.c b/src/mtx_log.c
index c5819fc..7d7ab96 100644
--- a/src/mtx_log.c
+++ b/src/mtx_log.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_lt.c b/src/mtx_lt.c
index d6a5ee8..f21210a 100644
--- a/src/mtx_lt.c
+++ b/src/mtx_lt.c
@@ -4,7 +4,7 @@
* objects fand manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* Fand infandmation on usage and redistribution, and fand a DISCLAIMER OF ALL
diff --git a/src/mtx_max2.c b/src/mtx_max2.c
index 3ad68bf..60b87b5 100644
--- a/src/mtx_max2.c
+++ b/src/mtx_max2.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_mean.c b/src/mtx_mean.c
index 77ecc61..1b74182 100644
--- a/src/mtx_mean.c
+++ b/src/mtx_mean.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_min2.c b/src/mtx_min2.c
index 6282f60..5bf0db3 100644
--- a/src/mtx_min2.c
+++ b/src/mtx_min2.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_mul.c b/src/mtx_mul.c
index e1ceb0e..e509d41 100644
--- a/src/mtx_mul.c
+++ b/src/mtx_mul.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_mul~.c b/src/mtx_mul~.c
index b3d1130..3f072f3 100644
--- a/src/mtx_mul~.c
+++ b/src/mtx_mul~.c
@@ -5,7 +5,7 @@
* mostly refering to matlab/octave matrix functions
*
* Copyright (c) Thomas Musil, IEM KUG Graz Austria 2000-2003
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute, IEM, Graz, Austria
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute, IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
* WARRANTIES, see the file, "LICENSE.txt," in this distribution.
diff --git a/src/mtx_neq.c b/src/mtx_neq.c
index 69a4c57..bc5efe1 100644
--- a/src/mtx_neq.c
+++ b/src/mtx_neq.c
@@ -4,7 +4,7 @@
* objects fand manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* Fand infandmation on usage and redistribution, and fand a DISCLAIMER OF ALL
diff --git a/src/mtx_not.c b/src/mtx_not.c
index 153bced..357a219 100644
--- a/src/mtx_not.c
+++ b/src/mtx_not.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_ones.c b/src/mtx_ones.c
index dbd8f12..79e23b4 100644
--- a/src/mtx_ones.c
+++ b/src/mtx_ones.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_or.c b/src/mtx_or.c
index b15f722..a8a35e2 100644
--- a/src/mtx_or.c
+++ b/src/mtx_or.c
@@ -4,7 +4,7 @@
* objects fand manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* Fand infandmation on usage and redistribution, and fand a DISCLAIMER OF ALL
diff --git a/src/mtx_pivot.c b/src/mtx_pivot.c
index 21b91fb..4c28e1a 100644
--- a/src/mtx_pivot.c
+++ b/src/mtx_pivot.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_pow.c b/src/mtx_pow.c
index 2451138..1234485 100644
--- a/src/mtx_pow.c
+++ b/src/mtx_pow.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_powtodb.c b/src/mtx_powtodb.c
index 4b82561..96edc3e 100644
--- a/src/mtx_powtodb.c
+++ b/src/mtx_powtodb.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_print.c b/src/mtx_print.c
index 70be980..ee4732b 100644
--- a/src/mtx_print.c
+++ b/src/mtx_print.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_prod.c b/src/mtx_prod.c
index 92107f7..9831e45 100644
--- a/src/mtx_prod.c
+++ b/src/mtx_prod.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_rand.c b/src/mtx_rand.c
index 6956376..a6b5f17 100644
--- a/src/mtx_rand.c
+++ b/src/mtx_rand.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_resize.c b/src/mtx_resize.c
index dfa182c..1926dd4 100644
--- a/src/mtx_resize.c
+++ b/src/mtx_resize.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_reverse.c b/src/mtx_reverse.c
index 8a040f8..5e51423 100644
--- a/src/mtx_reverse.c
+++ b/src/mtx_reverse.c
@@ -5,7 +5,7 @@
* mostly refering to matlab/octave matrix functions
*
* Copyright (c) 2005, Franz Zotter
- * Copyright (c) 2006, IOhannes m zmölnig
+ * Copyright (c) 2006, IOhannes m zmölnig
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_rmstodb.c b/src/mtx_rmstodb.c
index f644d68..23560bf 100644
--- a/src/mtx_rmstodb.c
+++ b/src/mtx_rmstodb.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_roll.c b/src/mtx_roll.c
index 80aacdd..6a0a45f 100644
--- a/src/mtx_roll.c
+++ b/src/mtx_roll.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_row.c b/src/mtx_row.c
index db2a280..1c23a4c 100644
--- a/src/mtx_row.c
+++ b/src/mtx_row.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_scroll.c b/src/mtx_scroll.c
index 1f7ad56..19a0e95 100644
--- a/src/mtx_scroll.c
+++ b/src/mtx_scroll.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_sin.c b/src/mtx_sin.c
index c22541b..2a4cac2 100644
--- a/src/mtx_sin.c
+++ b/src/mtx_sin.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_size.c b/src/mtx_size.c
index 4395655..5ae28a4 100644
--- a/src/mtx_size.c
+++ b/src/mtx_size.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_sub.c b/src/mtx_sub.c
index 5b09496..828055e 100644
--- a/src/mtx_sub.c
+++ b/src/mtx_sub.c
@@ -4,7 +4,7 @@
* objects fand manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* Fand infandmation on usage and redistribution, and fand a DISCLAIMER OF ALL
diff --git a/src/mtx_sum.c b/src/mtx_sum.c
index 0286e2f..a9b6c08 100644
--- a/src/mtx_sum.c
+++ b/src/mtx_sum.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_trace.c b/src/mtx_trace.c
index 99e5e07..cf5f388 100644
--- a/src/mtx_trace.c
+++ b/src/mtx_trace.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_transpose.c b/src/mtx_transpose.c
index 4fcc87c..f6e7e8e 100644
--- a/src/mtx_transpose.c
+++ b/src/mtx_transpose.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
diff --git a/src/mtx_zeros.c b/src/mtx_zeros.c
index d5633a7..1bef533 100644
--- a/src/mtx_zeros.c
+++ b/src/mtx_zeros.c
@@ -4,7 +4,7 @@
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
- * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL