當前位置: 首頁>>代碼示例>>Python>>正文


Python DoubleVector.permute方法代碼示例

本文整理匯總了Python中ert.util.DoubleVector.permute方法的典型用法代碼示例。如果您正苦於以下問題:Python DoubleVector.permute方法的具體用法?Python DoubleVector.permute怎麽用?Python DoubleVector.permute使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ert.util.DoubleVector的用法示例。


在下文中一共展示了DoubleVector.permute方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: loadVector

# 需要導入模塊: from ert.util import DoubleVector [as 別名]
# 或者: from ert.util.DoubleVector import permute [as 別名]
    def loadVector(self, plot_block_data, fs, report_step, realization_number):
        """
        @type plot_block_data: PlotBlockData
        @type fs: EnkfFs
        @type report_step: int
        @type realization_number: int
        @rtype PlotBlockVector
        """
        config_node = self.__obs_vector.getConfigNode()

        is_private_container = config_node.getImplementationType() == ErtImplType.CONTAINER
        data_node = EnkfNode(config_node, private=is_private_container)

        node_id = NodeId(report_step, realization_number)

        if data_node.tryLoad(fs, node_id):
            block_obs = self.getBlockObservation(report_step)

            data = DoubleVector()
            for index in range(len(block_obs)):
                value = block_obs.getData(data_node.valuePointer(), index, node_id)
                data.append(value)
            data.permute(self.__permutation_vector)

            plot_block_vector = PlotBlockVector(realization_number, data)
            plot_block_data.addPlotBlockVector(plot_block_vector)
開發者ID:agchitu,項目名稱:ert,代碼行數:28,代碼來源:plot_block_data_loader.py

示例2: test_permutation_vector

# 需要導入模塊: from ert.util import DoubleVector [as 別名]
# 或者: from ert.util.DoubleVector import permute [as 別名]
    def test_permutation_vector(self):
        vector = DoubleVector()

        for i in range(5, 0, -1):
            vector.append(i)

        permutation_vector = vector.permutationSort()

        for index, value in enumerate(range(5, 0, -1)):
            self.assertEqual(vector[index], value)

        vector.permute(permutation_vector)

        for index, value in enumerate(range(1, 6)):
            self.assertEqual(vector[index], value)
開發者ID:YingfangZhou,項目名稱:ert,代碼行數:17,代碼來源:test_vectors.py


注:本文中的ert.util.DoubleVector.permute方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。