フィルターのクリア

How does the MATLAB symvar function work?

2 ビュー (過去 30 日間)
ABTJ
ABTJ 2019 年 5 月 14 日
回答済み: Walter Roberson 2019 年 5 月 14 日
I read the documentation and help about the symvar function but I'm still confused about how it works, especially for the following example:
clc
clear all
syms x y a
symvar(x + y, 1)
When I run this M-file, I get the answer 'x'. Why am I getting this answer? Why not 'y'? And what is the role of the number 1 written as the second argument?

採用された回答

Walter Roberson
Walter Roberson 2019 年 5 月 14 日
"symvar(s,n) chooses the n symbolic variables in s that are alphabetically closest to x and returns them in alphabetical order."
You get 1 because you asked for only 1.
You get x because it is alphabetically closer to x than y is

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNumbers and Precision についてさらに検索

製品


リリース

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by