You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: EidosScribe/EidosHelpFunctions.rtf
+91-3Lines changed: 91 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -4544,9 +4544,15 @@ The above explanation may not be entirely clear, so let\'92s look at an example.
4544
4544
\f3\fs20 , 2\'966, in the second column. Although visualization becomes more difficult, these same patterns extend to higher dimensions and arbitrary margins of
EIDOS_TERMINATION << "ERROR (Eidos_ExecuteFunction_rowSums): integer overflow in rowSums(); you might wish to convert to float before calling rowSums()." << EidosTerminate(nullptr);
1576
+
1577
+
series_ptr += x_rowcount;
1578
+
}
1579
+
1580
+
int_result->set_int_no_check(sum, value_index);
1581
+
}
1582
+
}
1583
+
elseif (x_type == EidosValueType::kValueFloat)
1584
+
{
1585
+
constdouble *float_data = x_value->FloatData();
1586
+
1587
+
EidosValue_Float *float_result = (new (gEidosValuePool->AllocateChunk()) EidosValue_Float())->resize_no_initialize(x_rowcount);
1588
+
result_SP = EidosValue_SP(float_result);
1589
+
1590
+
for (size_t value_index = 0; value_index < x_rowcount; ++value_index)
EIDOS_TERMINATION << "ERROR (Eidos_ExecuteFunction_colSums): integer overflow in colSums(); you might wish to convert to float before calling colSums()." << EidosTerminate(nullptr);
1665
+
1666
+
series_ptr++;
1667
+
}
1668
+
1669
+
int_result->set_int_no_check(sum, value_index);
1670
+
}
1671
+
}
1672
+
elseif (x_type == EidosValueType::kValueFloat)
1673
+
{
1674
+
constdouble *float_data = x_value->FloatData();
1675
+
1676
+
EidosValue_Float *float_result = (new (gEidosValuePool->AllocateChunk()) EidosValue_Float())->resize_no_initialize(x_colcount);
1677
+
result_SP = EidosValue_SP(float_result);
1678
+
1679
+
for (size_t value_index = 0; value_index < x_colcount; ++value_index)
0 commit comments