photo

Mazin Mustafa


Last seen: 23 días hace Con actividad desde 2016

Followers: 0   Following: 0

Mensaje
Programming Languages:
Python, C, MATLAB, Fortran
Spoken Languages:
English

Estadística

All
MATLAB Answers

4 Preguntas
1 Respuesta

File Exchange

14 Archivos

Cody

0 Problemas
8 Soluciones

CLASIFICACIÓN
38.231
of 300.364

REPUTACIÓN
1

CONTRIBUCIONES
4 Preguntas
1 Respuesta

ACEPTACIÓN DE RESPUESTAS
50.0%

VOTOS RECIBIDOS
1

CLASIFICACIÓN
2.598 of 20.934

REPUTACIÓN
660

EVALUACIÓN MEDIA
5.00

CONTRIBUCIONES
14 Archivos

DESCARGAS
47

ALL TIME DESCARGAS
5341

CLASIFICACIÓN
43.309
of 168.407

CONTRIBUCIONES
0 Problemas
8 Soluciones

PUNTUACIÓN
92

NÚMERO DE INSIGNIAS
1

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

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

Ver insignias

Feeds

Ver por

Enviada


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 meses hace | 3 descargas |

5.0 / 5
Thumbnail

Enviada


Electric/Magnetic Dipole Radiation in Planar Layered Media
Computes the near-field E and H fields due to J and M dipoles in planar multilayered media of any number of layers.

3 meses hace | 4 descargas |

5.0 / 5
Thumbnail

Enviada


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 ...

más de 2 años hace | 1 descarga |

0.0 / 5
Thumbnail

Enviada


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.

más de 2 años hace | 3 descargas |

0.0 / 5
Thumbnail

Enviada


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

más de 2 años hace | 1 descarga |

0.0 / 5
Thumbnail

Enviada


Romberg
Performs Romberg integration

alrededor de 3 años hace | 4 descargas |

5.0 / 5
Thumbnail

Enviada


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

más de 3 años hace | 2 descargas |

0.0 / 5
Thumbnail

Enviada


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

más de 3 años hace | 3 descargas |

0.0 / 5
Thumbnail

Enviada


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

casi 4 años hace | 5 descargas |

0.0 / 5
Thumbnail

Enviada


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...

alrededor de 4 años hace | 6 descargas |

5.0 / 5
Thumbnail

Enviada


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.

alrededor de 4 años hace | 3 descargas |

0.0 / 5
Thumbnail

Resuelto


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...

alrededor de 5 años hace

Resuelto


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...

alrededor de 5 años hace

Resuelto


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

alrededor de 5 años hace

Resuelto


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.

alrededor de 5 años hace

Resuelto


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 ...

alrededor de 5 años hace

Resuelto


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

alrededor de 5 años hace

Enviada


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.

alrededor de 5 años hace | 7 descargas |

0.0 / 5
Thumbnail

Resuelto


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...

alrededor de 5 años hace

Resuelto


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. ...

alrededor de 5 años hace

Enviada


Hankel_Transform
Computes Hankel Transform of order v

casi 7 años hace | 3 descargas |

5.0 / 5
Thumbnail

Enviada


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

casi 7 años hace | 3 descargas |

5.0 / 5
Thumbnail

Pregunta


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'?

alrededor de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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...

alrededor de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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...

alrededor de 8 años hace | 2 respuestas | 1

2

respuestas

Pregunta


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?...

más de 8 años hace | 1 respuesta | 0

1

respuesta

Respondida
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 ...

casi 9 años hace | 0