Difference between revisions of "Error Messages/40914"

 
 
Line 1: Line 1:
= Error Message =
+
[[Category: Error messages]]
  
:The «concatIndex» passed to SysFunction [[ConcatRows]] if the wrong length.  A length of 25 was expected, but the index provided has a length of 20.
+
== Error message ==
  
= Cause =
+
<pre style="background:white; border:white; margin-left: 1em; font-style:italic">
 +
The «concatIndex» passed to SysFunction ConcatRows if the wrong length. 
 +
A length of 25 was expected, but the index provided has a length of 20.
 +
</pre>
  
When you call [[ConcatRows]](A,I,J,K), providing the third index parameter, «K», the length of «K» must be equal to the product of the length of «I» and the length of «J».
+
== Cause ==
  
= Remedies =
+
When you call [[ConcatRows]](A, I, J, K), providing the third index parameter, «K», the length of «K» must be equal to the product of the length of «I» and the length of «J».
 +
 
 +
== Remedies ==
  
 
First, make sure that you are using the indexes that you intended.   
 
First, make sure that you are using the indexes that you intended.   
  
You could omit the «K» parameter and let [[ConcatRows]] create the result index for you.  Or you can redefine K as:  [[Sum]](1,I,J), which would guarantee it to be the correct length.
+
You could omit the «K» parameter and let [[ConcatRows]] create the result index for you.  Or you can redefine K as:  <code>Sum(1, I, J)</code>, which would guarantee it to be the correct length.
  
<comments />
+
==See Also==
 +
* [[Function calls and parameters]]
 +
* [[ConcatRows]]
 +
* [[Arrays and Indexes]]
 +
* [[Sum]]

Latest revision as of 21:34, 5 April 2016


Error message

The «concatIndex» passed to SysFunction ConcatRows if the wrong length.  
A length of 25 was expected, but the index provided has a length of 20.

Cause

When you call ConcatRows(A, I, J, K), providing the third index parameter, «K», the length of «K» must be equal to the product of the length of «I» and the length of «J».

Remedies

First, make sure that you are using the indexes that you intended.

You could omit the «K» parameter and let ConcatRows create the result index for you. Or you can redefine K as: Sum(1, I, J), which would guarantee it to be the correct length.

See Also

Comments


You are not allowed to post comments.