You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems to me, that the function "find_length" only works, when the data is one dimensional. If this is on purpose it would be nice to mention it in the docu.
def find_length(data):
if len(data.shape)>1:
return 0
The text was updated successfully, but these errors were encountered:
It seems to me, that the function "find_length" only works, when the data is one dimensional. If this is on purpose it would be nice to mention it in the docu.
def find_length(data):
if len(data.shape)>1:
return 0
The text was updated successfully, but these errors were encountered: