MCPcopy Create free account
hub / github.com/EmbeddedRPC/erpc / printMatrix

Function printMatrix

examples/matrix_multiply_python/matrix_multiply.py:44–48  ·  view source on GitHub ↗
(matrix)

Source from the content-addressed store, hash-verified

42
43## Print matrix
44def printMatrix(matrix):
45 for i in range(len(matrix)):
46 for j in range(len(matrix[0])):
47 print('%04d' % matrix[i][j], end=" ")
48 print()
49
50###############################################################################
51# Server

Callers 2

erpcMatrixMultiplyMethod · 0.85
runClientFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected