Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.0 - English

Change language to:
Français - 日本語 - Português

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.

Scilab manual >> Functions > bytecode

bytecode

given a function returns the "bytecode" of a function in a Scilab array and conversely.

Calling Sequence

x = bytecode(f)
f= bytecode(X)

Arguments

f

A scilab function.

x

an int32 row vector

Description

x = bytecode(f) returns the "bytecode" of the function f in the Scilab integer array x.

f = bytecode(x) returns in f the function associated with the "bytecode" given in the Scilab integer array x. Warning the validity of x is not checked.

Remark

The bytecode of Scilab function will evolve drastically in the future, So the use of this function should be restricted to the profiling instruction handling.

Examples

function a=foo(),a=sin(3),endfunction
bytecode(foo)

Authors

  • Serge Steer, INRIA
<< profiling Functions bytecodewalk >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jan 26 16:23:48 CET 2011