I need to make a method that receives the matrix values as a string as
"[ 1/4 1/3 1/2 ; 2/3 1/5 2/5 ; 1/6 1/5 7/8 ] "
and initializes the matrix ( ex. “[ 1/4 1/3 1/2 ; 2/3 1/5 2/5 ; 1/6 1/5 7/8 ] “)
I don't how to implement the functions parameters to accept this string...
Any help would be appreciated.