Python Forum
Thread Rating:
  • 1 Vote(s) - 1 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Algrbra Package
#8
Numpy is a python wrapper around a C implementation of matrix math. That means it uses pointer math for speed. This is very easy for a virus to exploit. Your C professor didn't warn you about this? I would rather have a pure Python implementation of the same features and be able to tell my client it's secure. Also, if you thought that programming language implementations of floating point arithmetic weren't error prone then your Professors omitted essential information.
With numpy you have no control over how mathematical operations are done and no control over the type translation from C types to Python native types. Both can introduce errors that you have no information regarding. A pure Python implementation can monitor and control both the particular mathematics done and the particular types and type translations used.
You gain security, precision, and better estimate of error by implementing in pure Python. Dance


Messages In This Thread
Algrbra Package - by kmcollins - Feb-02-2018, 07:42 PM
RE: Algrbra Package - by Mekire - Feb-02-2018, 10:33 PM
RE: Algrbra Package - by kmcollins - Feb-02-2018, 11:50 PM
RE: Algrbra Package - by kmcollins - Feb-03-2018, 11:11 PM
RE: Algrbra Package - by Gribouillis - Feb-04-2018, 12:31 AM
RE: Algrbra Package - by Windspar - Feb-04-2018, 02:55 PM
RE: Algrbra Package - by kmcollins - Feb-04-2018, 07:30 PM
RE: Algrbra Package - by kmcollins - Feb-06-2018, 12:02 AM
RE: Algrbra Package - by wavic - Feb-06-2018, 02:17 AM
RE: Algrbra Package - by kmcollins - Feb-06-2018, 04:22 PM
RE: Algrbra Package - by Gribouillis - Feb-06-2018, 06:11 PM
RE: Algrbra Package - by wavic - Feb-06-2018, 07:50 PM
RE: Algrbra Package - by kmcollins - Feb-06-2018, 09:54 PM
RE: Algrbra Package - by micseydel - Feb-06-2018, 11:02 PM
RE: Algrbra Package - by wavic - Feb-07-2018, 06:10 AM
RE: Algrbra Package - by kmcollins - Feb-07-2018, 09:06 PM
RE: Algrbra Package - by Gribouillis - Feb-07-2018, 09:37 PM
RE: Algrbra Package - by Mekire - Feb-08-2018, 01:45 AM
RE: Algrbra Package - by metulburr - Feb-08-2018, 02:02 AM
RE: Algrbra Package - by kmcollins - Feb-08-2018, 10:04 PM
RE: Algrbra Package - by Gribouillis - Feb-08-2018, 10:17 PM
RE: Algrbra Package - by kmcollins - Feb-08-2018, 11:26 PM
RE: Algrbra Package - by metulburr - Feb-08-2018, 11:52 PM
RE: Algrbra Package - by Mekire - Feb-09-2018, 04:47 AM

Forum Jump:

User Panel Messages

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