A little help in understanding a function
조회 수: 2 (최근 30일)
이전 댓글 표시
function DB = DBInit()
DB.Records = [];
DB.Template = {};
end
what's the diffrence between [] and {}?
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2013년 5월 14일
편집: Azzi Abdelmalek
2013년 5월 14일
a=[] % is a 0x0 (empty) double array
a={} % is a 0x0 (empty) cell array
댓글 수: 0
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!