Creating an empty sym variable?
조회 수: 5 (최근 30일)
이전 댓글 표시
Hello,
How I can create an empty 0x0 sym variable? Such as x=[] x={}, expect I want to make x an empyt sym, not an empty double or cell.
Thank you, Kevin
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2013년 2월 15일
x=sym([])
댓글 수: 3
Azzi Abdelmalek
2013년 2월 15일
Even with double
x=[];
y=10
a=y+x % is different from y, it gives []
a=[x y], % gives y
Now with sym
x=sym([])
syms y
a=x+y, % the result is x
a=[x y] % the result is y
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Assumptions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!