shubham jain
shubham jain

Reputation: 1

how to increase buffer size in scilab

I'm using a variable that is using too large symbol/string in Scilab, which is giving following error:

Too large string. at line 44 of exec file called by :
exec('/proj/shubhamj/shubhamj/scilab/final_add_from_script.sce', -1)

I've already used stacksize('max').

Upvotes: 0

Views: 507

Answers (1)

rbaleksandar
rbaleksandar

Reputation: 9701

According to this thread on the mailing list for Scilab the error comes from the length of the command. You can get the same error without the exec() if you call a command that is too long even in your current script (where the exec() call currently is).

If we look at the documentation the default stacksize is approx. 76MB (megabytes) and that is a lot of characters which makes this issue 99.9% not related to the size of the stack.

Upvotes: 1

Related Questions