Skip to content

Instantly share code, notes, and snippets.

@qzhang0130
qzhang0130 / url_hpc_etc
Created July 16, 2020 02:49
url_hpc_etc
https://stackoverflow.com/questions/31654526/need-to-save-xls-workbook-as-xlsb-with-vba
https://www.lifewire.com/xlsb-file-2622534
https://github.com/MicrosoftHPC/HPC2016.SampleCode/blob/master/Excel/AzureSamplePack/Example2/ConvertiblePricing_Complete.xlsb
https://docs.microsoft.com/en-us/powershell/high-performance-computing/install-the-microsoft-hpc-pack-web-components?view=hpc19-ps
https://docs.microsoft.com/en-us/powershell/high-performance-computing/hpcpack-excel-vba?view=hpc19-ps
https://libraries.io/github/MicrosoftHPC
import numpy as np
# Example 1
vec1 = np.array([1, 2])
vec2 = np.array([2, 3])
vec1*vec2
# Return