フィルターのクリア

Create an array containing numeric and symbolic variables

2 ビュー (過去 30 日間)
Connor LeClaire
Connor LeClaire 2021 年 11 月 24 日
回答済み: Kevin Holly 2021 年 11 月 24 日
I am trying to create an array that contains both numeric and symbolic variables. I need both as certain values will be tested if they are symbolic or not using isnumeric(); however, when trying to test these values they all come back as symbolic, is there a way around this? Code below:
syms t1 t2 d;
DH = [0 0.4 0 t1 %i = 1
0 0.1 -90 t2 %i = 2
0 d 90 0]; %i = 3
Thanks!

採用された回答

Kevin Holly
Kevin Holly 2021 年 11 月 24 日
syms t1 t2 d;
DH = {0 0.4 0 t1 %i = 1
0 0.1 -90 t2 %i = 2
0 d 90 0} %i = 3
DH = 3×4 cell array
{[0]} {[0.4000]} {[ 0]} {[t1]} {[0]} {[0.1000]} {[-90]} {[t2]} {[0]} {[d ]} {[ 90]} {[ 0]}
isnumeric(DH{1,1})
ans = logical
1
isnumeric(DH{1,4})
ans = logical
0

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by