how to switch the value of a boolean.

80 ビュー (過去 30 日間)
Steven
Steven 2012 年 9 月 7 日
Hi, is there any function to do the following :
a = true;
b = someFunction(a)
==> b = false
b = sumeFunction(b)
==> b = true;
thank you.

採用された回答

Honglei Chen
Honglei Chen 2012 年 9 月 7 日
編集済み: Honglei Chen 2012 年 9 月 7 日
b = ~a;
c = ~b;
or if you are looking for the functional form
b = not(a);
c = not(b);

その他の回答 (1 件)

James Tursa
James Tursa 2012 年 9 月 7 日
b = ~a;
c = ~b;

カテゴリ

Help Center および File ExchangeSimulink についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by