Solve Error in Symbolic Matrix
이전 댓글 표시
hİ, solver returns this for syms matrix forms. How should I use solver?
syms K11 [3 3] matrix
syms deltat [1 1] matrix
solve([K11+K11==deltat*K11],[deltat])
gives
Check for incorrect argument data type or missing argument in call to function 'solve'.
댓글 수: 10
Dyuman Joshi
2021년 5월 3일
Why are you writing matrix while defining the variables?
Ahmet Parker
2021년 5월 3일
Dyuman Joshi
2021년 5월 3일
Oh, Don't know about that. Anyways, here's what I have done. Is this what you want?

Ahmet Parker
2021년 5월 3일
Walter Roberson
2021년 5월 3일
solve() is not defined for symmatrix() yet.
solve(symmatrix2sym([K11+K11==deltat*K11]),symmatrix2sym(deltat))
Dyuman Joshi
2021년 5월 3일
Apologies for hijacking the problem, but is there a way to know what new functions have been to added to the latest version of MATLAB? @Walter Roberson
Swatantra Mahato
2021년 5월 5일
@Dyuman Joshi as far as I am aware you can get information on new features and funcitons in a toolbox from its Release Notes
Dyuman Joshi
2021년 5월 5일
@Swatantra Mahato How to know which toolboxes have been introduced with the newest release? In the release notes of the version?
Walter Roberson
2021년 5월 5일
In R2021a, the new toolboxes are:
- DDS Blockset - Design and simulate DDS applications
- Radar Toolbox - Design, simulate, and test multifunction radar systems
- Satellite Communication Toolbox - Simulate, analyze, and test satellite communications systems and links
Dyuman Joshi
2021년 5월 5일
@Walter Roberson Thank you for the link, it is exactly what I was looking for!
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Mathematics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!