photo

ALBERT ALEXANDER STONIER


NORTH EASTERN UNIVERSITY, BOSTON, USA

Last seen: plus de 3 ans il y a Actif depuis 2016

Followers: 0   Following: 0

Message

Dr.S.ALBERT ALEXANDER is the post doctoral research fellow in North eastern University, Boston, USA. He completed his Ph.D. in the performance improvement of solar Photovoltaics under Anna University, India. He completed his master degree in Power Electronics and Drives with Anna University rank. As a principal investigator he has completed three major research projects sponsored by Government of India. For detailed profile visit www.ootyalex.webs.com

Statistiques

All
MATLAB Answers

0 Questions
23 Réponses

File Exchange

2 Fichiers

Cody

2 Problèmes
123 Solutions

RANG
378
of 301 966

RÉPUTATION
220

CONTRIBUTIONS
0 Questions
23 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
88

RANG
3 193 of 21 475

RÉPUTATION
512

CLASSEMENT MOYEN
4.60

CONTRIBUTIONS
2 Fichiers

TÉLÉCHARGEMENTS
9

ALL TIME TÉLÉCHARGEMENTS
3624

RANG
9 227
of 177 784

CONTRIBUTIONS
2 Problèmes
123 Solutions

SCORE
830

NOMBRE DE BADGES
6

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Triathlon Participant
  • Scavenger Finisher
  • Revival Level 2
  • Knowledgeable Level 2
  • Quiz Master
  • Promoter
  • Personal Best Downloads Level 2
  • 5-Star Galaxy Level 5
  • First Submission
  • First Answer
  • Renowned
  • Celebrity

Afficher les badges

Feeds

Afficher par

Réponse apportée
Tuning a PID Controller in Simpowersystem Model
Either to derive the model and can obtain the gain values. Orelse, its by trial and error.

plus de 4 ans il y a | 0

Réponse apportée
How i can i design hollow square wave inverter?
The switching frequency of 12kHz can be decided by the frequency of the triangle waveform. You can use saw tooth block and then ...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
How to speed up my Simulink model?
Change the solver type and check for the speed

plus de 9 ans il y a | 1

| A accepté

Réponse apportée
how to plot iv curve for solar pv
In MATLAB 2016 you have this option to plot both PV and IV characteristics simultaneously.

plus de 9 ans il y a | 0

Réponse apportée
incremental conductance MPP method
You can set the initial value as any value between 0 to 1. Normally we can set as 0.4. Based on the variations in the input sola...

presque 10 ans il y a | 0

Réponse apportée
Problem related to powergui block
It is only because of the dimensions which you have specified for the signal. Kindly change the dimensions and proceed with.

presque 10 ans il y a | 0

Réponse apportée
simulink for three phase 120 degree inverter
If your load requirement is 50GW, kindly consider that you using single source (fuel cell) or with multiple sources like (solar,...

presque 10 ans il y a | 0

Réponse apportée
Hi, Could I get help for coding or designing SVPWM for single phase 3 level inverter?
You can find the SVPWM generator block in MATLAB 2016B.

presque 10 ans il y a | 0

Réponse apportée
how to give values in pulse generator for simulation of cascaded hybrid 5 level inverter in matlab simulink ?
You can make use of multilevel PWM generator which is available in MATLAB/Simulink 2016b.

presque 10 ans il y a | 0

Réponse apportée
Is there a PWM block available in Simulink?
There are so many options for the generation of PWM in MATLAB. Some are listed as below: 1. You can use a function generator an...

presque 10 ans il y a | 1

| A accepté

A résolu


Convert from integer to binary
if true % decimalToBinaryVector(x) end

presque 10 ans il y a

A résolu


Find the definite integral of various linear functions
A definite integral had a minimum and maximum limit. When you solve this type of problem you must use both quad and the trapz fu...

presque 10 ans il y a

A résolu


Was ist denn los?
Nur für deutschsprechende Leute! Wie geht's? ...also gut, bis bald!

presque 10 ans il y a

A résolu


Test Problem; Create a 5x5 array containing all ones
This is a test for learning the process of creating a Cody problem. The goal of this test problem will be to create an array,...

presque 10 ans il y a

A résolu


Matrix which contains the values of an other matrix A at the given locations.
If you have two matrices, which together give xc and yc coordinates into another matrix, eg : xc = [1 1 1; 2 2 1]; ...

presque 10 ans il y a

A résolu


Is my wife right?
Regardless of input, output the string 'yes'.

presque 10 ans il y a

A résolu


Find the area of a rectangle if length of the diagonal is given.
if length of a diagnonal in rectangle is 5. Its area is 12.

presque 10 ans il y a

A résolu


Print true if
all elements are larger than 5 a=[1 3 5 8 6]; b=[6 6 6 6 6]; function(a) should be false, and function(b) will be tru...

presque 10 ans il y a

A résolu


Conduct inner product using given matrix
a=[1 2 3]; b=[3 4 5]; y=function(a,b) Output y should be 26

presque 10 ans il y a

A résolu


how to find characteristic polynomial of a given matrix?
how to find characteristic polynomial of a given matrix?

presque 10 ans il y a

A résolu


Replace 0 to NaN!
In given matrix A=[1 nan nan; 2 2 nan; nan nan 1]; replace NaN to 0.

presque 10 ans il y a

A résolu


Calculate determinent
Calculate determinent of given matrix A=[2 4;3 5]; function(A) Output should be -2

presque 10 ans il y a

A résolu


Calculate gradient
x=1:0.1:5; y=x.^2; calculate gradient (dy/dx) using numerical method. This means dydx(i)=(y(i+1)-y(i))/(x(i+1)-x(i)...

presque 10 ans il y a

A résolu


Extrack values in 2-dimensional data
There are data c at (x,y) x=1:10;y=1:10; [x,y]=meshgrid(x,y) c=exp(sqrt(x.^2+y.^2)) Estinate data c at (x=5.4,y=7....

presque 10 ans il y a

A résolu


x&u are two vectors then Y=x+u???
x&u are two vectors then Y=x+u???

presque 10 ans il y a

A résolu


Determine point is located in a circle or not
Using input [x] and [y], determine the points (x,y) is located inside of circle (x^2+y^2=1) if point is located in circle,...

presque 10 ans il y a

A résolu


How to permute given 3d matrix?
A(:,:,1)=[1 3] A(:,:,2)=[2 2] A(:,:,3)=[4 3] Change rows to columns and columns to rows, similar to transpose. Resul...

presque 10 ans il y a

A résolu


Change string to number
Change given string to number. (hint: there is already function) Changing from ['1234'] to [1234] is one of example

presque 10 ans il y a

A résolu


Calculate polynomial equation
Calculate this equation using given x 1+x+x^2+x^3+....x^99 (hint: use polyval)

presque 10 ans il y a

A résolu


Delete useless part of data
When someone deals with big data. if the person delete useless part, calculation will be more faster than before deleting. De...

presque 10 ans il y a

Charger plus