Search found 80 matches

Return

by Eli
7 years ago
Jump to forum
Jump to topic

Slicing Arrays in Python

The standard rules of Python slicing apply to arrays. Basic slicing for example on lists, extends Python’s basic concept of slicing to N dimensions. Here are a number of Python array slicing examples. import numpy as np #Create a 10x10 array: a = np.arange(100).reshape(10, 10) In [1]: a Out[1]: arra...
by Eli
5 years ago
Jump to forum
Jump to topic

African Astronomy Meeting 25-26 March 2019

As we continue to celebrate the most significant decision by the International Astronomical Union to host the 2024 General Assembly in Africa for the first time, let us also think strategically about how we would like Astronomy in Africa to evolve over the next 6 years, and beyond. With this spirit ...
by Eli
5 years ago
Jump to forum
Jump to topic

The Dirac-Delta Function

Dirac delta function, Dirac- \delta is extremely very powerful tool, classically applied in calculus, for example, in transforming complicated integral functions to make them easily integrable, and in transformations between real and Fourier spaces. Most of its applications span into many areas of p...
by Eli
5 years ago
Jump to forum
Jump to topic

Re: African Astronomy Meeting 25-26 March 2019

Official statement: https://www.tssfl.com/african-astronomy-meeting-25-26-march-5857?view-post=16165#p16165 AfAS calls for proposals for Action and project planning committees. The call is available at the following link: https://www.africanastronomicalsociety.org/afas-call-for-proposals-action-and-...
by Eli
5 years ago
Jump to forum
Jump to topic

Daily Calculus - Post one Problem and its Solution

Calculus is a natural witchcraft to many problems in life, it is highly applied to solve a wide range of problems in sciences, engineering, mathematics, humanities, economics, and many other areas. In this Daily Calculus thread, I encourage anyone to post at least a problem and its solution to help ...
by Eli
5 years ago
Jump to forum
Jump to topic

Make Movies as Numerical Solutions of Partial Differential Equations

This is a snapshot of numerical solutions of Partial Differential Equations - PDEs . We particularly want to show how to numerically solve PDEs of the form u_{t} + f(u)_{x} = 0 , where u = u(x,t) is a function of space, x and time, t . The PDEs of this form usually describe transport phenomena, and ...
by Eli
4 years ago
Jump to forum
Jump to topic

5th EDITION OF SCIENCE BY WOMEN PROGRAM REQUEST FOR APPLICATIONS FOR VISITING SENIOR RESEARCH FELLOWSHIPS IN SPAIN

Deadline for proposals submission September 30, 2019 Following the success of 1st four editions, the Women for Africa Foundation (FMxA), in line with its mission of contributing to the development of Africa through its women, is launching the 5th Edition of SCIENCE BY WOMEN programme, with the aim t...
by Eli
5 years ago
Jump to forum
Jump to topic

Re: Simple C++ Program

When programming, especially, in C-type programming languages such as C++ we need to store the variables in a computer memory. Before the computer stores any variable , it needs to know the type of data we want to store in it. The reason the computer has to know in advance the type of data before st...
by Eli
4 years ago
Jump to forum
Jump to topic

Linear Regression Analysis Using Excel on Human Resources Data

The regression analysis is one of the heavily used models to analyze data. Human resource managers use this model for various data analyses and make predictions that affect their businesses. A general subject on simple regression analysis has been covered under the topic From Simple Linear Regressio...
by Eli
4 years ago
Jump to forum
Jump to topic

How to Improve Your Scientific/General Style Writing

Here are few references for a general writing style, it can be scientific writing or else. 1. Becoming a more productive writer, by Helen Sword Learning_how_to_write.pdf 2. At Least One Small Thing a Day: The Elements of Writing Productivity, by Michelle LaFrance, Ph.D. Elements_of_productive_Writin...