Question: octave/mathlab can you add what should i write matrix when i press run button or tell me about steps to find output 1. Write a
1. Write a function that takes an incidence matrix representation of a graph as a matrix and returns its adjacency list representation as a cell array. Hints: Be careful. The graph may have loops and parallel edges. Write your code so that it will be able to handle them as well The ordering of neighbors of a node in the corresponding adjacency list is not important. They can be written in any order. For example, adjacency list of node 1 could be written as (4,5,2,5) or (5,5,4,2), etc. in the example below. So you can create these lists in any order that you wish. Example: Input matrix: 1 0 1 1 0 00 1 1 00 11 0 1 1 0 0 00 0 0 1 0 0 1 0 1 0 1 0 000 01 0 0 1 0 0 0 0 0 OOOO 0 0 OOO 0 1 1 0 0 0 0 0 Output: [2.4,5,5).[1,2,3,4),(2,4),(1,3,5,2],[4,5,1,110 11
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
