Comparator block in simulink

What is the block i can use in simulink that makes a comparison between two signals? I tried the block named "comparator" from "Simelectronics library" but it dosen't work because it doesn't enable connecting my inputs on it. thanks

1 件のコメント

Subarna Giri
Subarna Giri 2018 年 4 月 21 日
I have same problem

サインインしてコメントする。

回答 (2 件)

Jason Ghidella
Jason Ghidella 2013 年 3 月 27 日

2 投票

An alternative is to use the built-in block "Relational Operator" block from the Logic and Bit Operations library in Simulink. There are other blocks in the library that you may also what to use.
A piece of advice though is the watch out for data type issues. If you are comparing doubles then you may not always get the result you are expecting due to the floatign point precisions of your machince, (eps).

3 件のコメント

Caroline Rosa
Caroline Rosa 2013 年 3 月 29 日
thanks for your tip Jason
santhiya Balachandar
santhiya Balachandar 2020 年 11 月 29 日
Thanks a lot
JongUn
JongUn 2025 年 1 月 3 日
Thank you very much!

サインインしてコメントする。

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 3 月 24 日

1 投票

If you want to compare signal1 and signal2 use two block:
  1. sum block to get signal1-signal2
  2. compare to constant block where you will set constant value to 0. The input of this block is signal1-signal2

4 件のコメント

Caroline Rosa
Caroline Rosa 2013 年 3 月 24 日
Thanks Azzi.
paranandi lakshmi narayana
paranandi lakshmi narayana 2016 年 2 月 24 日
sir what is the use of the constant block.actually in my project need to compare 2 signals.Is sum block is enough or need use constant block if necessary how please explain me sir
Boubker Boutalha
Boubker Boutalha 2020 年 1 月 14 日
Thanks Abdelmalek !
To @Paranandi Lakshmi Narayana , with the solution proposed by @Azzi Abdelmalek, you still compare the signals, it is just applied the differential comparison to a costant.
For example, your signals are A and B, that could be numbers. You could compare them directly, like as follow:
A > B ; A greater than B
Or instead applying the differential, you do the following:
A > B ----> (A - B) > (B - B) ----> (A - B) > 0 ;
So, tell that A is greater than B, correspond to have (A - B) greater than the constant 0 (zero).
Kind regards,
Boubker
Wael Atiyah
Wael Atiyah 2022 年 3 月 28 日
Dear Mr.Abdalmalek
your suggestion not clear wirh respect to me , possible more clarrification

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeSimulink についてさらに検索

タグ

質問済み:

2013 年 3 月 24 日

コメント済み:

2025 年 1 月 3 日

Community Treasure Hunt

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

Start Hunting!

Translated by