필터 지우기
필터 지우기

Input matrix for scenarios

조회 수: 1 (최근 30일)
jana
jana 2013년 5월 28일
I have a set of scenarios say 1,2,3. And each scenario has a set of zero-one matrices showing if an arc has failure or not. for example: scenario 1 will have [1,1,1;0,1,1] and scenario 2 will have [1,0,0;0,1,0].( 1 representing no failure and 0 representing failure) I dont know how to write it on matlab. I would be grateful if anyone of you could help me out with it.
Thankyou!

채택된 답변

Image Analyst
Image Analyst 2013년 5월 28일
What do those 2 row by 3 column matrices represent? Why can't you just do
scenario1 = [1,1,1;0,1,1];
scenario2 = [1,0,0;0,1,0];
and the same for scenario3? It seems so obvious that I must be missing something.
  댓글 수: 4
jana
jana 2013년 5월 28일
Thank you!, that really helped!
Image Analyst
Image Analyst 2013년 5월 28일
If we're done, then go ahead and mark it Accepted.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2013년 5월 28일
A=[1,1,1;0,1,1]

카테고리

Help CenterFile Exchange에서 Graphics Object Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by