Bug with piecewise?

12 ビュー (過去 30 日間)
Dion Richardson
Dion Richardson 2019 年 8 月 28 日
コメント済み: Dion Richardson 2019 年 8 月 30 日
I'm no expert at all in mathematics but I wrote a simple program that doesn't seem to get the answer that I'd expect.
It provides:
ans =
6 - time
time + 6
as the only solutions, however shouldn't 0 be a solution assuming time > 6?
This could just be poor programming on behalf of me and if it is how would I get the required answer.
  1. Is this a bug?
  2. Am I making a mistake?
  3. If this is a mistake how can I fix it?
This is supposed to simulate a 1D particle traveling at a fixed velocity of 1 towards origin (0). I understand the answer is relatively simple to do by hand, however I have this repeated with more complicated variables in a larger equation that would be incredably tedious and unmaintainable to solve by hand.
syms position time;
speed = piecewise(position > 0,-1,position < 0,1,0);
solve(int(speed,time) + 6 == position,position) %6 is starting offset

採用された回答

Walter Roberson
Walter Roberson 2019 年 8 月 28 日
編集済み: Walter Roberson 2019 年 8 月 29 日
When position is 0 then speed is 0. int(0,time) is 0 plus a constant. Add 6 and the result is 6 plus a constant. The result is not equal to 0 unless the constant is -6. Which is possible, but int() always uses constant 0 for indefinite integration.
  9 件のコメント
Walter Roberson
Walter Roberson 2019 年 8 月 29 日
I filed a bug report about the discrepancy
Dion Richardson
Dion Richardson 2019 年 8 月 30 日
Sweet, thank you =)

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by