Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.4.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 help >> Compatibility Functions > mtlb_conv

mtlb_conv

Matlab conv emulation function. This function is obsolete.

Description

Matlab conv and Scilab convol behave differently in some particular cases:

  • With column vector inputs: if at least input is a column vector Matlab conv returns a column vector but Scilab convol always returns a row vector.

The function mtlb_conv(u,v) is used by mfile2sci to replace conv(u,v) when it was not possible to know what were the inputs while porting Matlab code to Scilab. This function will determine the correct semantic at run time. If you want to have a more efficient code it is possible to replace mtlb_conv calls:

  • If u and v are row vectors, mtlb_conv(u,v) may be replaced by convol(u,v)

  • If u or v is a column vector, mtlb_conv(u,v) may be replaced by convol(u,v).'

  • If u and v are column vectors, mtlb_conv(u,v) may be replaced by convol(u,v).'

Scilab convol sometimes returns values that may be rounded using clean to have a closer result from Matlab one.

Caution: mtlb_conv has not to be used for hand coded functions.

See Also

  • clean — cleans matrices (round to zero small entries)
  • conv — discrete 1-D convolution.

History

VersionDescription
5.4.0 Function mtlb_conv is obsolete and will be removed in Scilab 5.4.1, use conv instead.
Report an issue
<< mtlb_colordef Compatibility Functions mtlb_cumprod >>

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:
Mon Oct 01 17:34:57 CEST 2012