Community Profile

photo

Mazin Mustafa


Last seen: 13日 前 2016 年からアクティブ

Followers: 0   Following: 0

連絡
Programming Languages:
Python, C, MATLAB, Fortran
Spoken Languages:
English

統計

All
  • Thankful Level 2
  • 5-Star Galaxy Level 4
  • Explorer
  • Solver
  • Personal Best Downloads Level 3
  • First Review
  • First Submission
  • Thankful Level 1
  • First Answer

バッジを表示

Feeds

表示方法

送信済み


2D Dipole Phased Array Scanning Impedance- Method of Moments
Evaluates the input impedance of rectangular array of vertical dipoles phased array at various scanning angle using method of ...

10ヶ月 前 | ダウンロード 2 件 |

Thumbnail

送信済み


FCC Regulations for Maximum Permissible Exposure
Computes the FCC regulations charts for Maximum Permissible Exposure of RF field due to an antenna and the safe distance.

12ヶ月 前 | ダウンロード 1 件 |

Thumbnail

送信済み


Root Finding Cauchy Integration Method
A root finding algorithm for complex functions based on Delves & Lyness method using Cauchy Integration Method.

約1年 前 | ダウンロード 3 件 |

Thumbnail

送信済み


Romberg
Performs Romberg integration

1年以上 前 | ダウンロード 8 件 |

Thumbnail

送信済み


Gray Code
Basic function that generates Gray code for arbitrary base and number of digits

2年弱 前 | ダウンロード 6 件 |

Thumbnail

送信済み


Gaussian Elimination with Partial Pivoting
Finds the solution to the linear system Ax=b using Gaussian Elimination with Partial Pivoting (GEPP) algorithm

2年弱 前 | ダウンロード 27 件 |

Thumbnail

送信済み


Gauss-Legendre Quadrature Triangle
Performs Gauss-Legendre numerical integral over a standard triangle

2年以上 前 | ダウンロード 7 件 |

Thumbnail

送信済み


Method of moments for 2D scattering from PEC cylinder (CFIE)
Solves 2D scattering problem using MoM with Pieacewise Linear basis and testing functions (Galerkin's method) and calculates RCS...

2年以上 前 | ダウンロード 20 件 |

Thumbnail

送信済み


Method of Moments for 2D PEC Circular Cylinder (Point Match)
Solves 2D scattering problem for a circular cylinder using MoM using Point Match technique and calculates RCS.

2年以上 前 | ダウンロード 9 件 |

Thumbnail

送信済み


Half-Space Sommerfeld Integrator Electric Fields
This program uses the Dyadic Green's Functions to compute the exact fields due to Electric or Magnetic dipole the top medium.

3年以上 前 | ダウンロード 3 件 |

Thumbnail

送信済み


Electric/Magnetic Dipole Radiation in Planar Layered Media
Computes the near-field electric fields due to electric or magnetic dipole in planar multilayered media of any number of layers....

3年以上 前 | ダウンロード 4 件 |

Thumbnail

解決済み


Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2...

3年以上 前

解決済み


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

3年以上 前

解決済み


Return area of square
Side of square=input=a Area=output=b

3年以上 前

解決済み


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

3年以上 前

解決済み


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

3年以上 前

解決済み


Add two numbers
Given a and b, return the sum a+b in c.

3年以上 前

送信済み


Method of moments for vertical dipole antenna
An example of MoM solution for vertical dipole antenna fed at the center via delta gap excitation using Galerkin's method.

3年以上 前 | ダウンロード 8 件 |

Thumbnail

解決済み


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

3年以上 前

解決済み


Return the Fibonacci Sequence
Write a code which returns the Fibonacci Sequence such that the largest value in the sequence is less than the input integer N. ...

3年以上 前

送信済み


Hankel_Transform
Computes Hankel Transform of order v

5年以上 前 | ダウンロード 2 件 |

Thumbnail

送信済み


Polar_dB
Plots polar data in dB scale. Useful for radiation pattern plots.

5年以上 前 | ダウンロード 6 件 |

Thumbnail

質問


What is the name of the mathematical technique used by the function 'roots'?
My question is simple, what is the name of the mathematical technique used by the function 'roots'?

6年以上 前 | 1 件の回答 | 0

1

回答

質問


Passing function with parameters to another function
Hi, I am trying to create a function that accepts another function with its own parameters e.g. Func1(@(x)Func2(x,para1,para...

6年以上 前 | 1 件の回答 | 0

1

回答

質問


How to improve the speed of Matlab numerical integral?
I am interested in computing numerical integrals in Matlab. My program evaluates multiple integrals using a "for loop". I need b...

6年以上 前 | 2 件の回答 | 1

2

回答

質問


Exporting PDF pcolor white grid
I am having this problem when trying to export pdf format for my pcolor or contour plots. Does anyone know the solution to this?...

6年以上 前 | 1 件の回答 | 0

1

回答

回答済み
polar plots axis limits
If you want to plot something such as antenna pattern for e.g. -40 dB to 0dB you may use the following code: data ...

7年以上 前 | 0