Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Complex floating issue
#1
Can anyone make a look to following code why it cant calculate complex numbers in the defined arrray.

import numpy as np

n=5
alpha = 0.7
A=np.zeros([n+1,n+1])
B=np.zeros([n+1])
#sum=0
for i in range(n+1):
    for j in range(n+1):
        A[i][j]=(i-j)**(alpha)
            
        
print(A) 
---------------------------------------------------------------------------
Error:
TypeError Traceback (most recent call last) <ipython-input-20-265607fc02b7> in <module> 8 for i in range(n+1): 9 for j in range(n+1): ---> 10 A[i][j]=(i-j)**(alpha) 11 12 TypeError: can't convert complex to float
Reply


Messages In This Thread
Complex floating issue - by arshad - Nov-04-2019, 03:55 PM
RE: Complex floating issue - by DeaD_EyE - Nov-04-2019, 04:18 PM
RE: Complex floating issue - by arshad - Nov-05-2019, 03:26 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  floating point not increasing properly rakeshpe43 4 2,412 Apr-30-2020, 05:37 AM
Last Post: rakeshpe43
  floating point arithmetic exDeveloper 2 2,124 Sep-25-2019, 04:33 PM
Last Post: DeaD_EyE
  finding the closest floating point number in a list Skaperen 17 8,310 Sep-19-2019, 10:39 PM
Last Post: Skaperen
  finding the next higher representable floating point value Skaperen 0 1,949 Sep-13-2019, 11:16 PM
Last Post: Skaperen
  Subtracting values between two dictionaries/ floating point numbers FloppyPoppy 5 5,937 Mar-04-2019, 01:00 PM
Last Post: snippsat
  Conversion needed from bytearray to Floating point braveYug 1 4,130 May-07-2018, 12:23 PM
Last Post: snippsat
  print floating point number Regulus 19 11,237 Aug-14-2017, 02:42 PM
Last Post: nilamo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020