- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在 numpy 中可以创建一个矩阵并使用方便的切片符号
arr=np.array([[1,2,3], [4,5,6], [7, 8, 9], [10,11,12]])
print (arr[2, :])
print (arr[1:2, 2])
这可以扩展到 N 维。
但是现在如果我希望拥有相同的东西,但一个轴不是数字轴,而是一个基于字符串的轴怎么办?所以索引一个元素就像:
print(arr["cylinder", :, :]) #prints all cylinders
print(arr["sphere", 4, 100]) #prints sphere of 4 radius, 100 bar
print(arr[:, 4, 100]) #prints every shape with 4 radius 100 bar
我可以为每个“组合”(所有形状、特定半径、特定压力……所有形状、所有半径、特定压力……特定形状、特定半径、特定压力)制作。一个独特的功能,但这是不可行的,那么我该如何创建它呢?
目前一切都存储为字典的字典(特别是因为只使用半径和压力的值)。如果底层存储可以保留为字典的字典 - 但添加切片/索引运算符将是黄金!
class all_measurements(object):
def __init__(self):
self.measurements = {}
def add_measurement(self, measurement):
shape = measurement.shape
size = measurement.size
pressure = measurement.pressure
fname = measurement.filename
if shape in self.measurements:
shape_dict = self.measurements[shape]
else:
shape_dict = {}
self.measurements[shape] = shape_dict
if size in shape_dict:
size_dict = shape_dict[size]
else:
size_dict ={}
shape_dict[size] = size_dict
if pressure in size_dict:
pressure_dict = size_dict[pressure]
else:
pressure_dict = {}
size_dict[pressure] = pressure_dict
if fname in pressure_dict:
print("adding same file twice!")
pressure_dict[fname] = measurement
def get_measurements(self, shape = None, size = None, pressure = None, fname = None):
current_dict = self.measurements
if shape is None:
return current_dict
if shape in current_dict:
current_dict = current_dict[shape]
else:
return None
if size is None:
return current_dict
if size in current_dict:
current_dict = current_dict[size]
else:
return None
if pressure is None:
return current_dict
if pressure in current_dict:
current_dict = current_dict[pressure]
else:
return None
if fname is None:
return current_dict
if fname in current_dict:
return current_dict[fname]
else:
return None
最佳答案
我认为您正在寻找结构化数组,请参阅 here .
例子:
>>> import numpy as np
>>> a = np.zeros(10,dtype={'names':['a','b','c'],'formats':['f64','f64','f64']})
# write some data in a
>>> a['a'] = np.arange(10)
>>> a['b'] = np.arange(10,20)
>>> a['c'] = np.arange(20,30)
>>> a
array([(0.0, 10.0, 20.0),
(1.0, 11.0, 21.0),
(2.0, 12.0, 22.0),
(3.0, 13.0, 23.0),
(4.0, 14.0, 24.0),
(5.0, 15.0, 25.0),
(6.0, 16.0, 26.0),
(7.0, 17.0, 27.0),
(8.0, 18.0, 28.0),
(9.0, 19.0, 29.0)],
dtype=[('a', '<f4'), ('b', '<f4'), ('c', '<f4')])
>>> a['a'][2:6]
array([ 2., 3., 4., 5.], dtype=float32)
>>> a[4:8]
array([(4.0, 14.0, 24.0),
(5.0, 15.0, 25.0),
(6.0, 16.0, 26.0),
(7.0, 17.0, 27.0)],
dtype=[('a', '<f4'), ('b', '<f4'), ('c', '<f4')])
关于python - 单轴索引为字符串的 Numpy 数组(矩阵),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29210040/
单向链表 单向链表比顺序结构的线性表最大的好处就是不用保证存放的位置,它只需要用指针去指向下一个元素就能搞定。 单链表图解 图画的比较粗糙,简单的讲解一下: 上面四个长方形,每个长方
使用TCP,我正在设计一些类似于next的程序。 客户端在许多线程中的接收正在等待一台服务器的发送消息。但是,这是有条件的。 recv正在等待特定的发送消息。 例如 客户 thread 1: recv
我正在编写正则表达式来验证电子邮件。唯一让我困惑的是: 顶级域名可以使用单个字符吗?(例如:lockevn.c) 背景:我知道顶级域名可以是 2 个字符到任意字符(.uk、.us 到 .canon、.
是否可以在单个定义中定义同一 Controller 的多个路由? 例如: 我想要一个单一的定义 /, /about, /privacy-policy 使用类似的东西 _home: pat
我正在使用 objective-c开发针对 11.4 iOS 的单 View 应用程序,以及 Xcode版本是 9.4.1。 创建后有Main.storyboard和LaunchScreen.stor
我一直在尝试在 shell 程序中实现管道结构,如果我执行简单的命令(例如“hello | rev”),它就可以工作 但是当我尝试执行“head -c 1000000/dev/urandom | wc
此表包含主机和接口(interface)列UNIQUE 组合* 编辑:这个表也有一个自动递增的唯一 ID,抱歉我应该在之前提到这个 ** | host.... | interface..... |
我想将具有固定补丁大小的“std filter”应用于单 channel 图像。 也就是说,我希望 out[i,j] 等于 img[i,j] 附近的像素值的标准值。 对于那些熟悉 Matlab 的人,
假设我想进行网络调用并使用 rx.Single,因为我希望只有一个值。 我如何应用replay().autoConnect() 这样的东西,这样当我从多个来源订阅时网络调用就不会发生多次?我应该使用
我将图像从 rgb 转换为 YUV。现在我想单独找到亮度 channel 的平均值。你能告诉我如何实现这一目标吗?此外,有没有办法确定图像由多少个 channel 组成? 最佳答案 你可以这样做: #
在比较Go和Scala的语句结束检测时,我发现Scala的规则更丰富,即: A line ending is treated as a semicolon unless one of the foll
在IEEE 1800-2005或更高版本中,&和&&二进制运算符有什么区别?它们相等吗? 我注意到,当a和b的类型为bit时,这些coverpoint定义的行为相同: cp: coverpoint a
我正在使用Flutter的provider软件包。我要实现的是为一个 View 或页面提供一个简单的提供程序。因此,我在小部件中尝试了以下操作: Widget build(BuildContext c
我正在尝试在 cython 中使用 openmp。我需要在 cython 中做两件事: i) 在我的 cython 代码中使用 #pragma omp single{} 作用域。 ii) 使用#pra
我正在尝试从转义字符字符串中删除单引号和双引号。它对单引号 ' 或双自动 " 不起作用。 请问有人可以帮忙吗? var mysting = escapedStr.replace(/^%22/g, '
我正在尝试在 cython 中使用 openmp。我需要在 cython 中做两件事: i) 在我的 cython 代码中使用 #pragma omp single{} 作用域。 ii) 使用#pra
我正在使用 ANT+ 协议(protocol),将智能手机与 ANT+ USB 加密狗连接,该加密狗通过 SimulANT+ 连接到 PC。 SimulANT+ 正在模拟一个心率传感器,它将数据发送到
有人可以解释/理解单/多线程模式下计算结果的不同吗? 这是一个大约的例子。圆周率的计算: #include #include #include const int itera(100000000
我编写了一个粗略的阴影映射实现,它使用 6 个不同的 View 矩阵渲染场景 6 次以创建立方体贴图。 作为优化,我正在尝试使用几何着色器升级到单 channel 方法,但很难从我的着色器获得任何输出
尝试使用 Single-Spa 构建一些东西并面临添加到应用程序 AngularJS 的问题。 Angular2 和 ReactJs 工作完美,但如果添加 AngularJS 并尝试为此应用程序使用
我是一名优秀的程序员,十分优秀!