Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.1 - Русский

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

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Справка Scilab >> Функции для совместимости > mtlb_isletter

mtlb_isletter

Matlab isletter emulation function

Description

There is no Scilab equivalent function for Matlab isletter and equivalent instructions are quite ugly, so mfile2sci uses mtlb_isletter(A) to replace isletter(A). If you want to have a more efficient code it is possible to replace mtlb_isletter calls:

  • If A is not a character string tf = mtlb_isletter(A) may be replaced by tf = zeros(A)

  • If A is a character string tf = mtlb_isletter(A) may be replaced by tf = (asciimat(A)>=65&asciimat(A)<=90)|(asciimat(A)>=97&asciimat(A)<=122)

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

Report an issue
<< mtlb_isfield Функции для совместимости mtlb_isspace >>

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:
Thu Oct 02 14:01:18 CEST 2014