break
The break keyword immediately terminates a for or while loop.
for j = 1:10
disp(j)
if j == 3
break
end
end
1
2
3
新規機能と機能改善に関する情報。
Activateの使用を開始する際の基本的な情報。
チュートリアルを活用してActivateを使用してください。
Activeモデルのコンポーネント。
モデリング物理コンポーネントについて学習します。
Hydraulics (By Fluidon)ライブラリを使用した水力システムのモデリングについて学習します。
ModelicaとSpiceを使用した電気/電子システムのモデリングについて学習します。
マルチボディメカニカルシステムのモデリングについて学習します。
電磁システムのモデリングについて学習します。
シミュレーションのセットアップ、実行、およびトラブルシューティングの方法を紹介します。
結果のレビュー、表示、エクスポートのためのオプションについて。
動的システムモデルを構築するためのブロックライブラリについて学習します。
拡張定義、OMLガイド、ブロックライブラリ、および用語集。
ユーザーズガイドの重要なトピックに関する詳しい情報を収めたPDFファイル。
OpenMatrix is a mathematical scripting language.
Literals are items that are constant throughout the life of the application. Literals include numeric, imaginary, characters, strings, logicals, and Other (NaN/Inf).
Data types are items that are constant throughout the life of the application and are built into the OpenMatrix language.
Strings are arrays of characters.
OML language scripts manipulate data through variables. Variables are referred to by their name (alphanumeric) and can be created (assigned) and deleted as described in this section.
Indexing is used to retrieve one or more specific values out of a collection.
Operators are used to combine operands.
Each operator in this section is explained with the operations of scalars, vectors, and matrices that are allowed for said operator.
Statements are made of expressions and may be a simple expression or a more complex variety of expressions.
Loops are used to perform the same set of statements multiple times.
Loops are used to perform the same set of statements multiple times. The for loop runs the statements a set number of times based on the number of elements in the collection found on the first line of the for loop.
The break keyword immediately terminates a for or while loop.
Loops are used to perform the same set of statements multiple times. The while loop runs the statement until a condition is no longer met.
OpenMatrix language supports conditional execution of statements using the if/elseif/else construct.
OpenMatrix language also supports a variant of this using switch/case/otherwise.
The try /catch block allows you to stop errors from being returned, and allows another block of code to execute instead of the error.
There are two types of workspaces: Local and Global.
Functions are packets of statements that can be used repeatedly.
OpenMatrix statements persist in .oml files.
This section describes files that can be manipulated by the OpenMatrix Language.
Errors and warning messages are both output in the console (or the Command Window in GUI mode) of Activate.
Objects in OML are defined using the classdef keyword. This creates a blueprint for an object but does not actually create (instantiate) anything.
The Reference Guide contains documentation for all functions supported in the OpenMatrix language.
インストール済みのActivateライブラリにあるすべてのブロックについて説明します。
この用語集には、本ソフトウェアに関連する主要な用語と定義が含まれています。
一般的な操作のショートカットを定義します。
OpenMatrix is a mathematical scripting language.
拡張定義、OMLガイド、ブロックライブラリ、および用語集。
Loops are used to perform the same set of statements multiple times.
The break keyword immediately terminates a for or while loop.
このページのトピック
The break keyword immediately terminates a for or while loop.
for j = 1:10
disp(j)
if j == 3
break
end
end
1
2
3
このページのトピック
(c) 2025 Altair Engineering, Inc. All rights reserved.