This commit is contained in:
guanjihuan 2022-05-20 14:29:08 +08:00
parent 7aea8b3cef
commit 37fe0bf7c7
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
[metadata] [metadata]
# replace with your username: # replace with your username:
name = guan name = guan
version = 0.0.88 version = 0.0.89
author = guanjihuan author = guanjihuan
author_email = guanjihuan@163.com author_email = guanjihuan@163.com
description = An open source python package description = An open source python package

View File

@ -303,7 +303,7 @@ guan.make_gif(image_path_array, filename='a', duration=0.1)
parameter_array = guan.preprocess_for_parallel_calculations(parameter_array_all, cpus=1, task_index=0) parameter_array = guan.preprocess_for_parallel_calculations(parameter_array_all, cpus=1, task_index=0)
guan.change_directory_by_replacement(current_key_word='codes', new_key_word='data') guan.change_directory_by_replacement(current_key_word='code', new_key_word='data')
guan.batch_reading_and_plotting(directory, xlabel='x', ylabel='y') guan.batch_reading_and_plotting(directory, xlabel='x', ylabel='y')
@ -2181,7 +2181,7 @@ def preprocess_for_parallel_calculations(parameter_array_all, cpus=1, task_index
parameter_array = parameter_array_all[task_index*num_parameter:num_all] parameter_array = parameter_array_all[task_index*num_parameter:num_all]
return parameter_array return parameter_array
def change_directory_by_replacement(current_key_word='codes', new_key_word='data'): def change_directory_by_replacement(current_key_word='code', new_key_word='data'):
import os import os
code_path = os.getcwd() code_path = os.getcwd()
data_path = code_path.replace('\\', '/') data_path = code_path.replace('\\', '/')