-
-
Save IndhumathyChelliah/c24b833504456d3c39b8248d4c7453c4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
a=np.full_like([1+1j,2+2j],4) | |
print (a)#Output:[4.+0.j 4.+0.j] | |
a1=np.full_like([1,2],3) | |
print (a1)#Output:[3 3] | |
a2=np.full_like([1.,2.],2) | |
print (a2)#Output:[2. 2.] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment