Symbolic vectors 'invalid variable name'

42 ビュー (過去 30 日間)
Nic
Nic 2019 年 4 月 24 日
回答済み: Nathan Hardenberg 2022 年 5 月 4 日
I am attempting to create a symbolic vector precisely like the one explained here.
Starting with a fresh MATLAB environment, the code:
syms a [1 4]
Causes an error: "Error using syms (line 222). Invalid variable name."
This code creates a 1x1 sym object 'a', but not the expected 1x4 symbolic vector. The exact same error occurs on my own computer running R2018a (academic) and university computers running R2018b (academic). The syms toolbox seems to be working fine as simply using 'syms a' works fine.
All other similar errors seem to be caused by a missing symbolic toolbox or with more complicated code. I can't figure out why something so simple is failing on both systems. Any suggestions are very welcome.

採用された回答

madhan ravi
madhan ravi 2019 年 4 月 24 日
sym('a',[1 4])
doc sym
  2 件のコメント
Nic
Nic 2019 年 4 月 24 日
Thank you. Is there any reason the official documentation for syms doesn't mention this considering it now seems to be wildly outdated?
madhan ravi
madhan ravi 2019 年 4 月 24 日
編集済み: madhan ravi 2019 年 4 月 24 日
The documentation you’re seeing is for 2019a version.

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

その他の回答 (1 件)

Nathan Hardenberg
Nathan Hardenberg 2022 年 5 月 4 日
In my R2021b version your code works without an error. And the output is like one would expect:
syms a [1 4]
display(a)

カテゴリ

Help Center および File ExchangeUtilities for the Solver についてさらに検索

タグ

製品


リリース

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by