Converting inputdlg entries to symbols in a matrix
1 次查看(过去 30 天)
显示 更早的评论
Code for non-symbol case:
Matrices = inputdlg({'Matrix 1', 'Matrix 2'})
Matrix1 = str2num(Matrices{1})
Matrix2 = str2num(Matrices{2})
Product = Matrix1*Matrix2
I have tried the following but it does not work.
str2sym(Matrices{1})
I want the user to be able to enter somethig like a 40; c 20 and have this converted to a matrix whilst recognising the letters as symbolic values.
0 个评论
回答(1 个)
Walter Roberson
2021-7-8
You need to have [] around the entries. str2sym() will not assume that a space is to indicate a list.
Matrices = {'40', 'c 20'}
str2sym(Matrices{1})
str2sym("["+ Matrices{2}+"]")
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Operators and Elementary Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!