You are asked to create a function fl(x,y) = x^2 + y^2 table for integer numbers X and y from 1 to 5, using Matlab function "fprintf" and nested loops. You need to have the title and table contents to be exactly as the following: Three requirements:
All the equal signs in the table should be aligned in the same columns. There are spaces between two calculations. There is one empty line between the line with fl(x,y) = x^2 + y^2, and the table.
fl(x,y) = x^2 + y^2
1^2 + 1^2 = 2
1^2 + 2^2 = 5
1^2 + 3^2 = 10
1^2 + 4^2 = 17
1^2 + 5^2 = 26
2^2 + 1^2 = 5
2^2 + 2^2 = 8
2^2 + 3^2 = 13
2^2 + 4^2 = 20
2^2 + 5^2 = 29
3^2 + 1^2 = 10
3^2 + 2^2 = 13
3^2 + 3^2 = 18
3^2 + 4^2 = 25
3^2 + 5^2 = 34
4^2 + 1^2 = 17
4^2 + 2^2 = 20
4^2 + 3^2 = 25
4^2 + 4^2 = 32
4^2 + 5^2 = 41
5^2 + 1^2 = 26
5^2 + 2^2 = 29
5^2 + 3^2 = 34
5^2 + 4^2 = 41
5^2 + 5^2 = 50