Skip to content

Commit 7a6061d

Browse files
committed
add numpy mathematical functions
1 parent c258d8a commit 7a6061d

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

data/numpy.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,25 @@
133133
{
134134
"definition": "ডিগ্রি থেকে রেডিয়ান তে কনভার্ট করার জন্য",
135135
"code": "np.deg2rad(degree_value)"
136+
},
137+
{
138+
"title": "নাম-পাই ব্যাবহার করে ম্যাথম্যাটিক্যাল হিসাব নিকাশ",
139+
"items": [
140+
{
141+
"definition": "একটি সংখ্যার নির্দিষ্ট সাথে এক্সপোনেনশিয়েল হিসাব করার জন্য",
142+
"code": "np.exp(6)"
143+
},
144+
{
145+
"definition": "একটি সংখ্যার লগারিদম হিসাব করার জন্য",
146+
"code": "np.log(10)"
147+
},
148+
{
149+
"definition": "একটি সংখ্যার বর্গমূল হিসাব করার জন্য",
150+
"code": "np.sqrt(16)"
151+
}
152+
]
136153
}
154+
137155
]
138156
}
139157
]

0 commit comments

Comments
 (0)