<div class="text-justify">  <center>[Image Source](https://medium.com/predict/numpy-arithmetic-arrays-operations-e1c20be41c5a)</center> Hello everyone. Today I am again with a new post regarding mathematical and arithmetic operations using NumPy package. The last post deals with manipulating an array in NumPy. The link to the post along with other previous posts can be found at the bottom of this blog. First of all we will start by creating three arrays: one array is one dimensional and the rest two is two dimensional of shape 5*3 and 3*5 respectively. We will then print the content of each of these arrays. ``` import numpy as np array_1 = np.array([1,3,6,8,9]) array_2 = np.array([2,3,4,2,1,9,7,5,8,6,1,1,9,2,3]).reshape(5,3) array_3 = np.array([2,3,4,2,1,9,7,5,8,6,1,1,9,2,3]).reshape(3,5) array_1 array_2 array_3 ``` <br> The output is:  First lets see the addition of array. We will try to add `array_1` with itself. There are two ways to do it: the first is using `+` operator and the other way is using `add()` function. ``` array_1 + array_1 np.add(array_1, array_1) ``` You can see the output as:  Now lets try adding `array_2` and `array_3`. Remember the shape of first one is 5*3 and the second one is 3*5. If we try to add these two arrays, we will get following error. The reason is that arrays have different shape along two dimensions that make broadcasting impossible.  Lets try adding `array_3` with `array_1`. ``` array_1 array_3 array_3 + array_1 ``` <br> Now we can see the output as:  In the above program, the smaller array is being broadcasted to the bigger array to make the shape compatible. In the same way broadcasting works for multiplication as well: ``` array_3 * 2 array_3 * array_1 ``` <br>  In the same way we can divide the array and do other operation like subtraction. Now lets see other things like getting the sum using `sum()` function. ``` array_3 np.sum(array_3) np.sum(array_3, axis=0) np.sum(array_3, axis=1) ``` <br> If you see the output, you will notice the sum function returns the total value of all elements inside the array. Specifying the axis will return the value either across rows or columns. `axis=0` does operation column-wise and `axis=1` does operation along the rows.  There is another interesting function called `cumsum()` that helps to find the cumulative sum. Again you can specify the axis of your choice. ``` array_3 np.cumsum(array_3) np.cumsum(array_3, axis=0) ``` <br> The output is:  Next we will see various functions like mean, minimum and maximum value. ``` array_2 array_2.mean() np.mean(array_2, axis=1) np.mean(array_2, axis=0) np.amax(array_2) np.amin(array_2) ``` In the above code, we tried finding the mean of all element of `array_2`, along the rows and column, and the maximum and minimum value of element inside it. <br>  Link to previous NumPy Post: 1. [Intro To NumPy Library](https://hive.blog/hive-196387/@leoumesh/intro-to-numpy-library) 2. [Working With Arrays in NumPy](https://hive.blog/hive-196387/@leoumesh/working-with-arrays-in-numpy) 3. [Indexing and Slicing an Array in NumPy](https://hive.blog/hive-196387/@leoumesh/indexing-and-slicing-an-array-in-numpy) 4. [Array Manipulation Using NumPy](https://hive.blog/hive-196387/@leoumesh/array-manipulation-using-numpy) </div>
author | leoumesh | ||||||
---|---|---|---|---|---|---|---|
permlink | arithmetic-and-mathematical-operations-in-numpy | ||||||
category | hive-196387 | ||||||
json_metadata | {"tags":["hive-196387","python","numpy","code","coding","programming","math","mathematics"],"image":["https://images.hive.blog/DQmQ8xSCctiWNvuk3LWdNZ66azeD2mniJTU1kbZmHyYsuPa/image.png","https://images.hive.blog/DQmR4LBB4rdcY54sRgip3qnJqTSqCnkwwG2kCDwFKAv284h/image.png","https://images.hive.blog/DQmWhtvkuBnGYTjmAvRg27hcxm1DGkepvvRwErCoBpQJd6F/image.png","https://images.hive.blog/DQmRawTBzTkFac7fmENZCULRzVRN5uCc8pLZQtXNZ53UKyL/image.png","https://images.hive.blog/DQmYJfcNfXx7rJfi75xDUx9wXzARey5Y7ZdDnC2BEHaAKoM/image.png","https://images.hive.blog/DQmPcWiAL96jkgusHVTWvQ3ku2nS2w1Vqg8zeHYHmsh6GBb/image.png","https://images.hive.blog/DQmSeLfKjaQTCtsG2a5Pf682s4ASVm7Yrt88F3w48dbyH1F/image.png","https://images.hive.blog/DQme2Dtu9DcHUFpbzFJJDV8GQ7JZd4HJTkfeyAKBAiiUP3L/image.png","https://images.hive.blog/DQmbfCV8Nv88p2BUDHE7nVYqiEKFhcNjnLBHqmufnrAVDNn/image.png"],"links":["https://medium.com/predict/numpy-arithmetic-arrays-operations-e1c20be41c5a"],"app":"hiveblog/0.1","format":"markdown"} | ||||||
created | 2024-04-26 10:54:06 | ||||||
last_update | 2024-04-26 10:54:06 | ||||||
depth | 0 | ||||||
children | 1 | ||||||
last_payout | 2024-05-03 10:54:06 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 2.796 HBD | ||||||
curator_payout_value | 2.922 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 4,192 | ||||||
author_reputation | 212,340,493,251,438 | ||||||
root_title | "Arithmetic and Mathematical Operations in NumPy" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 133,136,643 | ||||||
net_rshares | 14,681,015,411,087 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drifter1 | 0 | 498,566,708 | 1.4% | ||
kevinwong | 0 | 2,921,466,863 | 1.4% | ||
justtryme90 | 0 | 691,676,549 | 35% | ||
eric-boucher | 0 | 7,650,250,093 | 1.4% | ||
juanmiguelsalas | 0 | 569,590,072 | 0.84% | ||
thecryptodrive | 0 | 3,434,637,327 | 0.56% | ||
kaylinart | 0 | 5,864,660,413 | 1.4% | ||
roelandp | 0 | 117,111,730,830 | 17.5% | ||
cloh76 | 0 | 1,975,355,119 | 1.4% | ||
logic | 0 | 168,186,617,707 | 100% | ||
sunshine | 0 | 101,279,351,646 | 17.5% | ||
lemouth | 0 | 925,253,433,981 | 35% | ||
lamouthe | 0 | 2,776,442,836 | 35% | ||
tfeldman | 0 | 2,706,950,933 | 1.4% | ||
metabs | 0 | 3,934,465,529 | 35% | ||
mcsvi | 0 | 99,264,416,423 | 50% | ||
lk666 | 0 | 1,024,568,488 | 1.4% | ||
cnfund | 0 | 5,857,922,983 | 2.8% | ||
boxcarblue | 0 | 6,418,378,805 | 1.4% | ||
steemcleaners | 0 | 2,316,438,559,453 | 80% | ||
justyy | 0 | 16,846,962,202 | 2.8% | ||
michelle.gent | 0 | 1,705,242,362 | 0.56% | ||
curie | 0 | 161,848,703,994 | 2.8% | ||
modernzorker | 0 | 1,990,777,720 | 1.96% | ||
techslut | 0 | 93,368,731,029 | 14% | ||
steemstem | 0 | 651,330,992,050 | 35% | ||
edb | 0 | 3,004,654,678 | 3.5% | ||
yadamaniart | 0 | 1,942,106,859 | 1.4% | ||
bigtakosensei | 0 | 888,640,186 | 0.7% | ||
walterjay | 0 | 229,816,267,524 | 17.5% | ||
valth | 0 | 5,318,889,255 | 17.5% | ||
metroair | 0 | 12,562,715,829 | 2.8% | ||
driptorchpress | 0 | 1,074,730,341 | 0.7% | ||
voter | 0 | 4,546,881,267 | 100% | ||
dna-replication | 0 | 1,346,920,111 | 35% | ||
steemiteducation | 0 | 633,991,021 | 1.4% | ||
dhimmel | 0 | 189,243,591,633 | 8.75% | ||
oluwatobiloba | 0 | 1,116,264,547 | 35% | ||
dimarss | 0 | 4,305,603,113 | 20% | ||
federacion45 | 0 | 4,257,219,560 | 1.4% | ||
dreamon | 0 | 719,226,414 | 22.2% | ||
gamersclassified | 0 | 2,505,865,617 | 1.4% | ||
jerrybanfield | 0 | 8,676,168,958 | 2.8% | ||
rt395 | 0 | 2,195,450,941 | 1.5% | ||
bitrocker2020 | 0 | 5,832,469,131 | 0.56% | ||
sustainablyyours | 0 | 10,124,581,629 | 17.5% | ||
arunava | 0 | 7,644,181,846 | 1.12% | ||
schoolforsdg4 | 0 | 1,065,952,482 | 5% | ||
samminator | 0 | 23,964,342,895 | 17.5% | ||
zerotoone | 0 | 530,881,248 | 1.4% | ||
enjar | 0 | 23,682,811,944 | 2.52% | ||
lorenzor | 0 | 1,327,795,463 | 50% | ||
firstamendment | 0 | 92,105,871,560 | 50% | ||
aboutyourbiz | 0 | 476,639,410 | 2.8% | ||
ewkaw | 0 | 606,173,982,325 | 20% | ||
alexander.alexis | 0 | 21,479,797,703 | 35% | ||
princessmewmew | 0 | 3,883,679,241 | 1.4% | ||
diabolika | 0 | 480,537,478 | 1.4% | ||
ufv | 0 | 3,006,808,420 | 50% | ||
gunthertopp | 0 | 36,787,904,715 | 0.7% | ||
empath | 0 | 2,127,725,737 | 1.4% | ||
minnowbooster | 0 | 814,076,358,796 | 20% | ||
felt.buzz | 0 | 3,927,594,106 | 0.7% | ||
howo | 0 | 1,100,108,279,940 | 35% | ||
tsoldovieri | 0 | 3,694,427,761 | 17.5% | ||
neumannsalva | 0 | 2,465,944,595 | 1.4% | ||
stayoutoftherz | 0 | 80,671,035,522 | 0.7% | ||
abigail-dantes | 0 | 12,949,126,909 | 35% | ||
coindevil | 0 | 1,464,841,284 | 2.24% | ||
zonguin | 0 | 1,863,509,491 | 8.75% | ||
investingpennies | 0 | 8,975,089,909 | 2.8% | ||
martibis | 0 | 1,441,142,744 | 0.84% | ||
redrica | 0 | 721,156,920 | 1.4% | ||
iamphysical | 0 | 1,459,602,039 | 90% | ||
zest | 0 | 482,904,733 | 17.5% | ||
zyx066 | 0 | 1,553,231,710 | 0.84% | ||
chrisdavidphoto | 0 | 610,846,284 | 0.84% | ||
revo | 0 | 5,758,280,857 | 2.8% | ||
azulear | 0 | 1,346,002,273 | 100% | ||
psicoluigi | 0 | 792,562,894 | 50% | ||
spaminator | 0 | 2,501,691,205,500 | 100% | ||
stickchumpion | 0 | 550,022,144 | 1.4% | ||
thelordsharvest | 0 | 1,866,557,443 | 2.8% | ||
aidefr | 0 | 3,733,859,165 | 17.5% | ||
torico | 0 | 738,355,234 | 0.92% | ||
therealwolf | 0 | 13,507,551,262 | 1.4% | ||
fatman | 0 | 9,103,506,071 | 2% | ||
votehero | 0 | 20,961,817,066 | 4.4% | ||
splash-of-angs63 | 0 | 11,925,032,297 | 50% | ||
cryptononymous | 0 | 965,267,007 | 1.4% | ||
msp-makeaminnow | 0 | 21,354,060,421 | 24.6% | ||
sharpshot | 0 | 109,227,453,091 | 40% | ||
msp-foundation | 0 | 99,999,625 | 77.1% | ||
meno | 0 | 14,598,966,377 | 1.4% | ||
buttcoins | 0 | 1,129,510,477 | 0.56% | ||
steemed-proxy | 0 | 541,269,130,831 | 2.8% | ||
fatkat | 0 | 713,184,832 | 1.39% | ||
investegg | 0 | 21,193,760,093 | 12.9% | ||
enzor | 0 | 1,075,779,945 | 17.5% | ||
marcoriccardi | 0 | 490,204,061 | 2.8% | ||
bartosz546 | 0 | 15,141,685,956 | 1.4% | ||
caladan | 0 | 4,475,264,501 | 2.8% | ||
miingjazz | 0 | 88,992,206,773 | 100% | ||
sunsea | 0 | 2,387,388,382 | 1.4% | ||
postpromoter | 0 | 846,328,425,932 | 35% | ||
bluefinstudios | 0 | 1,897,215,481 | 0.84% | ||
steveconnor | 0 | 2,491,741,559 | 1.4% | ||
sankysanket18 | 0 | 765,633,217 | 17.5% | ||
dbddv01 | 0 | 1,268,699,668 | 8.75% | ||
smartsteem | 0 | 67,138,300,794 | 1.4% | ||
aboutcoolscience | 0 | 168,399,338,370 | 35% | ||
afifa | 0 | 601,074,382 | 10% | ||
sandracarrascal | 0 | 501,942,477 | 50% | ||
kenadis | 0 | 9,366,854,077 | 35% | ||
madridbg | 0 | 14,602,547,203 | 35% | ||
robotics101 | 0 | 10,547,491,865 | 35% | ||
lpv | 0 | 1,496,849,506 | 4.37% | ||
adelepazani | 0 | 1,025,993,800 | 0.56% | ||
sco | 0 | 10,872,468,751 | 35% | ||
ennyta | 0 | 972,477,838 | 50% | ||
juecoree | 0 | 4,309,782,711 | 24.5% | ||
stahlberg | 0 | 615,349,729 | 1.4% | ||
cordeta | 0 | 495,966,800 | 2.8% | ||
branbello | 0 | 664,308,705 | 17.5% | ||
hetty-rowan | 0 | 1,617,933,503 | 1.4% | ||
ydavgonzalez | 0 | 2,257,169,055 | 10% | ||
fineartnow | 0 | 2,023,488,506 | 1.4% | ||
steemvault | 0 | 1,111,731,130 | 2.8% | ||
communitybank | 0 | 1,870,140,720 | 2.8% | ||
fragmentarion | 0 | 8,233,594,551 | 35% | ||
utube | 0 | 1,891,789,121 | 2.8% | ||
dynamicrypto | 0 | 1,445,708,300 | 1% | ||
neneandy | 0 | 3,193,597,043 | 2.8% | ||
marc-allaria | 0 | 1,682,884,139 | 1.4% | ||
sportscontest | 0 | 2,773,295,219 | 2.8% | ||
gribouille | 0 | 1,674,646,813 | 35% | ||
leoumesh | 0 | 1,088,187,519 | 100% | ||
chronocrypto | 0 | 594,236,609 | 1.4% | ||
kingabesh | 0 | 685,000,471 | 17.5% | ||
miguelangel2801 | 0 | 779,414,439 | 50% | ||
mproxima | 0 | 1,185,058,347 | 1.4% | ||
fantasycrypto | 0 | 923,821,560 | 1.4% | ||
didic | 0 | 937,934,668 | 1.4% | ||
emiliomoron | 0 | 3,226,355,767 | 17.5% | ||
dexterdev | 0 | 1,418,909,356 | 17.5% | ||
photohunt | 0 | 1,720,527,652 | 2.8% | ||
geopolis | 0 | 2,316,770,503 | 35% | ||
ajfernandez | 0 | 775,425,690 | 100% | ||
robertbira | 0 | 3,766,728,520 | 8.75% | ||
atomcollector | 0 | 941,177,806 | 0.7% | ||
alexdory | 0 | 4,593,720,680 | 35% | ||
takowi | 0 | 631,510,765 | 2.8% | ||
irgendwo | 0 | 11,352,710,713 | 2.8% | ||
kieranstone | 0 | 819,785,710 | 0.92% | ||
francostem | 0 | 4,851,682,596 | 35% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
croctopus | 0 | 1,436,060,940 | 100% | ||
jjerryhan | 0 | 2,847,130,203 | 1.4% | ||
zipporah | 0 | 1,425,066,309 | 0.56% | ||
leomarylm | 0 | 704,190,174 | 1.4% | ||
superlotto | 0 | 5,761,352,753 | 2.8% | ||
positiveninja | 0 | 549,246,104 | 1.4% | ||
bscrypto | 0 | 7,713,097,958 | 1.4% | ||
delpilar | 0 | 934,959,443 | 25% | ||
tomastonyperez | 0 | 16,764,552,137 | 50% | ||
bil.prag | 0 | 1,293,133,217 | 0.14% | ||
elvigia | 0 | 10,915,054,824 | 50% | ||
sanderjansenart | 0 | 2,807,667,204 | 1.4% | ||
qberry | 0 | 2,033,951,752 | 1.4% | ||
frissonsteemit | 0 | 616,222,227 | 1.4% | ||
broncofan99 | 0 | 8,863,088,637 | 20% | ||
greddyforce | 0 | 2,256,305,336 | 1.03% | ||
racibo | 0 | 15,444,898,505 | 20% | ||
flyerchen | 0 | 645,332,480 | 1.4% | ||
gadrian | 0 | 307,309,616,685 | 26.25% | ||
therising | 0 | 49,974,247,966 | 2.8% | ||
cryptocoinkb | 0 | 1,093,769,000 | 1.4% | ||
de-stem | 0 | 19,307,220,435 | 34.65% | ||
serylt | 0 | 1,593,287,950 | 34.3% | ||
josedelacruz | 0 | 4,483,638,850 | 50% | ||
achimmertens | 0 | 6,577,447,251 | 1.4% | ||
kgakakillerg | 0 | 19,618,181,694 | 10% | ||
softa | 0 | 1,505,613,152 | 0.56% | ||
we-are | 0 | 21,339,809,801 | 90.1% | ||
erickyoussif | 0 | 655,061,939 | 100% | ||
indigoocean | 0 | 637,954,440 | 1.4% | ||
deholt | 0 | 1,998,342,347 | 29.75% | ||
anneporter | 0 | 1,345,634,967 | 10.5% | ||
steem.services | 0 | 487,049,666 | 0.56% | ||
minerthreat | 0 | 1,799,400,958 | 1.4% | ||
temitayo-pelumi | 0 | 3,261,138,063 | 35% | ||
andrick | 0 | 847,483,148 | 50% | ||
doctor-cog-diss | 0 | 33,238,651,408 | 35% | ||
marcuz | 0 | 1,368,588,943 | 17.5% | ||
uche-nna | 0 | 3,716,510,273 | 2.24% | ||
citizendog | 0 | 2,042,037,366 | 2.8% | ||
cheese4ead | 0 | 2,040,908,188 | 1.4% | ||
apshamilton | 0 | 7,138,771,600 | 0.35% | ||
nattybongo | 0 | 25,491,178,612 | 35% | ||
drsensor | 0 | 762,249,318 | 28% | ||
revueh | 0 | 989,660,355 | 17.5% | ||
bflanagin | 0 | 1,664,953,887 | 1.4% | ||
ubaldonet | 0 | 3,777,074,396 | 80% | ||
armandosodano | 0 | 2,002,143,515 | 1.4% | ||
marivic10 | 0 | 690,602,929 | 1.4% | ||
hamismsf | 0 | 2,346,418,520 | 0.35% | ||
gerdtrudroepke | 0 | 17,435,735,283 | 20% | ||
mariaogliastre | 0 | 2,809,330,338 | 100% | ||
reinaseq | 0 | 7,590,119,815 | 100% | ||
vixmemon | 0 | 850,307,029 | 2.1% | ||
yaelg | 0 | 592,535,890 | 0.84% | ||
kylealex | 0 | 4,536,985,487 | 10% | ||
cubapl | 0 | 2,186,306,079 | 17.5% | ||
fran.frey | 0 | 4,126,606,130 | 50% | ||
perpetuum-lynx | 0 | 1,060,368,365 | 34.3% | ||
thelittlebank | 0 | 4,041,480,825 | 1.4% | ||
pboulet | 0 | 73,396,548,446 | 28% | ||
stem-espanol | 0 | 2,232,779,433 | 100% | ||
voter003 | 0 | 21,236,526,916 | 8.1% | ||
futurekr | 0 | 1,431,048,357 | 100% | ||
cliffagreen | 0 | 4,818,093,192 | 10% | ||
aleestra | 0 | 13,515,521,932 | 80% | ||
palasatenea | 0 | 1,674,906,662 | 1.4% | ||
the.success.club | 0 | 1,243,196,466 | 1.4% | ||
meanroosterfarm | 0 | 678,338,038 | 17.5% | ||
rosauradels | 0 | 2,026,563,278 | 100% | ||
brianoflondon | 0 | 45,252,806,935 | 0.7% | ||
giulyfarci52 | 0 | 1,686,416,444 | 50% | ||
steemcryptosicko | 0 | 4,584,023,873 | 0.56% | ||
multifacetas | 0 | 978,026,669 | 1.4% | ||
cowpatty | 0 | 713,024,299 | 17.5% | ||
stem.witness | 0 | 2,085,269,278 | 35% | ||
witkowskipawel | 0 | 475,232,838 | 1.4% | ||
jpbliberty | 0 | 4,249,351,631 | 0.7% | ||
autobodhi | 0 | 488,383,757 | 2.8% | ||
solox | 0 | 469,617,768 | 2.8% | ||
steemstorage | 0 | 3,307,202,372 | 2.8% | ||
steemegg | 0 | 535,238,903 | 1.4% | ||
jtm.support | 0 | 2,710,812,375 | 35% | ||
crowdwitness | 0 | 36,268,242,726 | 17.5% | ||
apokruphos | 0 | 381,315,628,290 | 50% | ||
hairgistix | 0 | 1,624,514,112 | 1.4% | ||
steemean | 0 | 9,938,311,101 | 5% | ||
proxy-pal | 0 | 626,193,798 | 2.8% | ||
littlesorceress | 0 | 644,695,322 | 1.4% | ||
newton666 | 0 | 801,133,264 | 17.5% | ||
dawnoner | 0 | 1,064,561,092 | 0.28% | ||
epicdice | 0 | 938,940,731 | 0.84% | ||
iamsaray | 0 | 700,863,414 | 1.4% | ||
newtrailers | 0 | 549,471,264 | 2.8% | ||
tggr | 0 | 682,399,135 | 1.4% | ||
aicu | 0 | 684,017,276 | 2.8% | ||
zeruxanime | 0 | 6,853,876,233 | 17.5% | ||
afarina46 | 0 | 950,217,625 | 17.5% | ||
waraira777 | 0 | 667,514,634 | 17.5% | ||
reggaesteem | 0 | 494,758,838 | 5% | ||
tokensink | 0 | 1,642,159,141 | 2.8% | ||
nazer | 0 | 1,402,889,345 | 17.5% | ||
steemstem-trig | 0 | 707,045,778 | 35% | ||
baltai | 0 | 3,261,767,582 | 1.4% | ||
chris-uk | 0 | 576,225,825 | 1.4% | ||
hjmarseille | 0 | 1,061,243,542 | 24.5% | ||
hivewatchers | 0 | 1,915,703,617 | 55% | ||
thepeakstudio | 0 | 2,716,588,775 | 100% | ||
stemsocial | 0 | 293,507,816,054 | 35% | ||
kyleana | 0 | 739,438,893 | 50% | ||
the100 | 0 | 661,553,032 | 1.4% | ||
hiveonboard | 0 | 433,059,918 | 1.4% | ||
hivelist | 0 | 1,020,245,913 | 0.84% | ||
noelyss | 0 | 8,924,643,019 | 17.5% | ||
kingfadino | 0 | 51,001,675,056 | 50% | ||
jsalvage | 0 | 619,777,682 | 17.5% | ||
greengalletti | 0 | 8,586,999,365 | 17.5% | ||
quinnertronics | 0 | 9,849,230,723 | 7% | ||
scriptkittie | 0 | 6,655,677,352 | 1.4% | ||
sevenoh-fiveoh | 0 | 525,029,075 | 1.4% | ||
visualartist | 0 | 503,393,762 | 1.4% | ||
altleft | 0 | 9,133,953,934 | 0.02% | ||
omarrojas | 0 | 1,191,942,483 | 1.4% | ||
noalys | 0 | 752,455,818 | 1.4% | ||
cosplay.hadr | 0 | 645,761,606 | 2.8% | ||
hadrgames | 0 | 666,470,051 | 2.8% | ||
meritocracy | 0 | 31,567,595,541 | 0.28% | ||
dcrops | 0 | 19,275,122,471 | 1.4% | ||
hive-129556 | 0 | 2,274,251,490 | 100% | ||
yozen | 0 | 1,071,168,670 | 1.4% | ||
nyxlabs | 0 | 587,641,996 | 1.75% | ||
failingforwards | 0 | 1,718,435,880 | 1.4% | ||
drricksanchez | 0 | 7,531,434,722 | 1.4% | ||
trippymane | 0 | 862,395,461 | 2.8% | ||
nfttunz | 0 | 4,729,397,493 | 0.28% | ||
atexoras.pub | 0 | 802,135,261 | 1.4% | ||
holovision.cash | 0 | 2,844,465,064 | 100% | ||
krrizjos18 | 0 | 1,519,225,987 | 17.5% | ||
artsugar | 0 | 565,885,771 | 1.4% | ||
podping | 0 | 4,335,651,189 | 0.7% | ||
drhueso | 0 | 695,471,227 | 1.4% | ||
jaydr | 0 | 739,001,850 | 1.4% | ||
seinkalar | 0 | 908,559,847 | 2.8% | ||
tanzil2024 | 0 | 1,102,975,440 | 1% | ||
aries90 | 0 | 24,264,112,783 | 2.8% | ||
cugel | 0 | 406,479,634 | 1.4% | ||
migka | 0 | 4,954,664,626 | 90% | ||
blingit | 0 | 1,810,351,788 | 1.4% | ||
h3m4n7 | 0 | 540,499,764 | 1.4% | ||
kqaosphreak | 0 | 3,458,752,344 | 35% | ||
simsahas | 0 | 1,556,826,990 | 2.8% | ||
newilluminati | 0 | 8,008,224,938 | 1.4% | ||
vickoly | 0 | 1,976,274,027 | 1.4% | ||
noctury | 0 | 948,914,482 | 1.4% | ||
sam9999 | 0 | 2,551,485,537 | 17.5% | ||
benwickenton | 0 | 1,342,400,442 | 2.8% | ||
dusunenkalpp | 0 | 646,280,824 | 1.4% | ||
prosocialise | 0 | 77,610,757,059 | 17.5% | ||
archangel21 | 0 | 7,211,235,618 | 2.8% | ||
filmmaking4hive | 0 | 1,192,169,955 | 2.8% | ||
ricardoeloy | 0 | 475,221,462 | 7% | ||
baboz | 0 | 771,302,540 | 0.7% | ||
sbtofficial | 0 | 2,495,553,244 | 1.4% | ||
nwothini335 | 0 | 730,030,674 | 8.75% | ||
vagabond42069 | 0 | 735,780,542 | 17.5% | ||
inibless | 0 | 952,384,378 | 17.5% | ||
idksamad78699 | 0 | 1,007,746,671 | 1.4% | ||
sc000 | 0 | 712,174,282 | 2.8% | ||
jijisaurart | 0 | 822,839,450 | 1.4% | ||
workaholic666 | 0 | 986,920,592 | 100% | ||
clpacksperiment | 0 | 1,208,348,488 | 1.4% | ||
ambicrypto | 0 | 52,718,840,766 | 2.8% | ||
humbe | 0 | 1,911,290,309 | 1% | ||
rhemagames | 0 | 2,637,631,350 | 1.4% | ||
kryptof | 0 | 4,211,781,431 | 5% | ||
oladamola | 0 | 16,280,367,915 | 20% | ||
captainman | 0 | 479,071,854 | 17.5% | ||
skm74 | 0 | 2,826,612,841 | 100% |
<div class='text-justify'> <div class='pull-left'> <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div> Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us! Please consider delegating to the @stemsocial account (85% of the curation rewards are returned). Thanks for including @stemsocial as a beneficiary, which gives you stronger support. <br /> <br /> </div>
author | stemsocial |
---|---|
permlink | re-leoumesh-arithmetic-and-mathematical-operations-in-numpy-20240426t182832227z |
category | hive-196387 |
json_metadata | {"app":"STEMsocial"} |
created | 2024-04-26 18:28:33 |
last_update | 2024-04-26 18:28:33 |
depth | 1 |
children | 0 |
last_payout | 2024-05-03 18:28:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 545 |
author_reputation | 22,911,435,184,347 |
root_title | "Arithmetic and Mathematical Operations in NumPy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 133,146,051 |
net_rshares | 0 |