Muhammad Qaisar Ali - MATLAB Central
photo

Muhammad Qaisar Ali


Pakistan Institue of Engineering and Applied Sciences

Last seen: 4 días hace Con actividad desde 2020

Followers: 0   Following: 1

Mensaje
Programming Languages:
Python, C++, C, Java, MATLAB, HTML, Arduino, Assembly, VHDL
Spoken Languages:
English, Hindi
Professional Interests:
Control Systems, Robust Controllers, Adaptive Control, Nonlinear Control, Electronics

Estadística

MATLAB AnswersFrom 06/20 to 03/25Use left and right arrows to move selectionFrom 06/20Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

2 Preguntas
4 Respuestas

CLASIFICACIÓN
7.828
of 297.560

REPUTACIÓN
6

CONTRIBUCIONES
2 Preguntas
4 Respuestas

ACEPTACIÓN DE RESPUESTAS
100.0%

VOTOS RECIBIDOS
3

CLASIFICACIÓN
 of 20.456

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 159.148

CONTRIBUCIONES
0 Problemas
0 Soluciones

PUNTUACIÓN
0

NÚMERO DE INSIGNIAS
0

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Thankful Level 2
  • Revival Level 1
  • Explorer
  • First Review
  • First Answer

Ver insignias

Feeds

Ver por

Pregunta


How to return an intermediate variable from ode45 in Matlab
What I want Hi there. I want to store or return an intermediate calculations in global variable at spacific time instants. For...

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

1

respuesta

Pregunta


Simscap Scope shows wrong data.
I am simulating an RL Circuit. when i take simulation time 10 ses, the graph on scope is nonsence. if anyone know, how to fix ...

casi 4 años hace | 1 respuesta | 0

1

respuesta

Respondida
Assignment question based on excel file I/O
function distance = get_distance(city_1,city_2) persistent distt city_names; if isempty(distt) && isempty(city_names) ...

más de 4 años hace | 1

Respondida
Problems with coursera image blur matlab problem
function output = blur(img,w); [r,c]=size(img); output=ones(r,c); for ri=1:r for ci=1:c ...

más de 4 años hace | 1

Respondida
Echo generator problem - Coursera Introduction to Matlab Programming
function output = echo_gen(input, fs, delay, amp) delay_mat=zeros(round(delay*fs),1); % a col vector. echo_mat=([de...

más de 4 años hace | 0

Respondida
how to find the element which is greater than or equal to its row and smaller or equal to its column in a matrix
another approch function indices = saddle(Z) indices=[]; for r=1:size((Z),1) % going through Rows for c=...

más de 4 años hace | 1