Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.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.
See the recommended documentation of this function

Scilab Help >> Xcos > Batch functions > xcosValidateCompareBlock

xcosValidateCompareBlock

Function to compare two Xcos Blocks.

Calling Sequence

[status, message] = xcosValidateCompareBlock(block1, block2)

Arguments

block1: A Xcos block.
block2: A Xcos block.

Module

Description

This function is used to compare two Blocks.

Function will go through each block field and compare the two values. The function returns true if the two blocks are equal, false otherwise. message will contain some information about non-homogeneous fields.

File content

  • SCI/modules/xcos/macros/xcosValidateCompareBlock.sci

Examples

loadXcosLibs();
block1 = CONST_m("define");
block2 = CONST_m("define");
[status, message] = xcosValidateCompareBlock(block1,block2)

block2.model.rpar = 42;
[status, message] = xcosValidateCompareBlock(block1,block2)

History

VersionDescription
5.4.0 Function xcosValidateCompareBlock introduced.
Report an issue
<< xcosValidateBlockSet Batch functions xcos_simulate >>

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:
Fri Apr 11 14:06:56 CEST 2014