create a variable to store sets

조회 수: 3 (최근 30일)
jana
jana 2013년 6월 7일
I would like to create a variable that stores a set of numbers for an arc (a,b).
S(a,b) = {1,2,3,4,5}
S(b,c) = {3,4,5} etc
but I dont know how to write it in matlab. Please help

채택된 답변

Iain
Iain 2013년 6월 7일
Sounds like you need a cell array:
S{set_no} = [2 3 5 6];
S(2} = [1 5 6 3 64 23];

추가 답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2013년 6월 7일
S{1,1}='a',
S{1,2}='b'
S{1,3}={1,2,3,4,5}
S{2,1}='b',
S{2,2}='c'
S{2,3}={3,4,5}

카테고리

Help CenterFile Exchange에서 Entering Commands에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by