Scientific Computing: Method of Undetermined Coefficients in Python

  • #1
the_dane
30
0
TL;DR Summary
I am asking if anyone have some Python code to compute coefficients
In a self learning project I am fooling around book https://faculty.washington.edu/rjl/fdmbook/

I want to do some of the computation myself to better understand the concepts but the book is Matlab based and Matlab is too expensive.
Does anyone by any chance have some of the codes provided by the book translated into Python?

Specifically I am looking at this function here which I want in Python:
https://faculty.washington.edu/rjl/fdmbook/matlab/fdcoeffF.m
 
Technology news on Phys.org
  • #2
You can almost literally use that MATLAB script in python. Just copy the entire contents of the function into e.g. a jupyter notebook cell and run it (not as a function but just the contents of the function). Then start at line 1 and fix it line by line into python code.

For instance, the first line is n=length(x), so before this line you start by defining the inputs. Define an array of coordinates called x:
Python:
import numpy as np
x = np.array([0.0, 0.1, 0.2])

and then you find out that the command for length() is called len() in python
Python:
n = len(x)

etc. It is a very basic code, so some self-learning of python and numpy for an hour should give you enough background to finish the porting to python. You can start here and follow the basic python tutorial and then the numpy tutorial:

https://www.w3schools.com/python/python_syntax.asp
 
  • #3
I have now typed something in Python.
for k = 2, xbar = pi/2, and x =[pi/2-0.2 , pi/2-0.1, pi/2, pi/2 + 0.1, pi/2 + 0.2]

I get the results:

C = [-8.33333333, 133.33333333, -250. , 133.33333333, -8.33333333]Can someone with MATLAB license please verify this result. I will be extremely helpfull, thanks!
 
  • #4
the_dane said:
Can someone with MATLAB license please verify this result. I will be extremely helpfull, thanks!
You can use Wolfram Alpha.
 
  • #5
Octave, https://www.gnu.org/software/octave/index, is a freeware Matlab clone. I have been using it for several years, and it has worked very well. The only real difference is that many of the help files are a little less helpful than those in Matlab.

I see that version 6.2 has been released. Time to upgrade.
 
  • Like
Likes jim mcnamara and Stephen Tashi
  • #6

Similar threads

Replies
10
Views
2K
Replies
2
Views
2K
Replies
5
Views
1K
Replies
3
Views
774
Replies
13
Views
2K
Replies
9
Views
3K
Replies
8
Views
2K
Replies
2
Views
2K
Back
Top