Cython “Cannot take address of memoryview slice”
问题 I am having trouble creating a simple class in Cython. There is little documentation related to handling memoryviews for arrays in C++ wrappers. I want to create a data class with time, x, y, and z attributes. I need these attributes to be arrays, which will ultimately be callable in Python. I previously had this working using numpy types, but I would like to do this properly using memoryviews. My background is not strong in C++. For now, I am only trying to get the time attribute working