Converting a Python Code to run on MATLAB
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
I have a particular block of code which I want to format so that I can run it on MATLAB. Could you please help me out with getting this converted?
import os, numpy as np
from ctREFPROP.ctREFPROP import REFPROPFunctionLibrary
def NBP():
RP = REFPROPFunctionLibrary(os.environ['RPPREFIX'])
print(RP.RPVersion())
RP.SETPATHdll(os.environ['RPPREFIX'])
r = RP.SETUPdll(1,"PROPANE.FLD","HMX.BNC","DEF")
assert(r.ierr == 0)
print(RP.PQFLSHdll(101.325, 0, [1.0], 0))
if __name__=='__main__':
# Print the version of REFPROP in use and the NBP
NBP()
3 commentaires
Réponses (0)
Voir également
Catégories
En savoir plus sur Call Python from MATLAB dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!