The Origin Forum
File Exchange
Try Origin for Free
The Origin Forum
Home | Profile | Register | Active Topics | Members | Search | FAQ | Send File to Tech support
 All Forums
 Origin Forum for Programming
 Forum for Python
 make plotting faster

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

Screensize:
UserName:
Password:
Anti-Spam Code:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkUpload FileInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
cts18488 Posted - 09/25/2025 : 06:07:33 AM
Origin Ver. 2024b and Service Release (Select Help-->About Origin):
Operating System: windows 11

Hi,

This is part of my code to plot 12x8 subplots in Origin.

gls_delta_A_spectra = [gr3[i] for i in range(len(htcd_file.columns)-1)]
p_delta_A_spectra = ['' for i in range(len(htcd_file.columns)-1)]

for i in range(len(htcd_file.columns)-1):
   p_delta_A_spectra[i] = gr3[i].add_plot(wks_delta_A_spectra, coly=f'{i+1}', colx='A')
   gls_delta_A_spectra[i].rescale()
   gls_delta_A_spectra[i].xlim = (min_wavelength, max_wavelength)


And this approach is quite slow. Is it possible to make it faster in any way? e.g. via LabTalk? or any other way.

Thank you!

The Origin Forum © 2020 Originlab Corporation Go To Top Of Page
Snitz Forums 2000