Wilmer Alexander - Conferencista en Automatización y Robótica más influyente en Iberoamérica - MATLAB Central
photo

Wilmer Alexander - Conferencista en Automatización y Robótica más influyente en Iberoamérica


IMAPLI

Last seen: más de 1 año hace Con actividad desde 2020

Followers: 0   Following: 0

Mensaje

Programador de PLC Jazz Unitronics más exitoso en Iberoamérica | Conferencista en Automatización más influyente | Jurado de concursos | Presidente de la Asociación Peruana de Robótica y ATP | Hablemos por WhatsApp: https://lnkd.in/ecgNffHg

Programming Languages:
MATLAB
Spoken Languages:
Spanish

Estadística

All
CodyMATLAB AnswersFile ExchangeFrom 07/20 to 03/25Use left and right arrows to move selectionFrom 07/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

1 Pregunta
5 Respuestas

File Exchange

1 Archivo

Cody

0 Problemas
65 Soluciones

CLASIFICACIÓN
3.104
of 297.851

REPUTACIÓN
18

CONTRIBUCIONES
1 Pregunta
5 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.0%

VOTOS RECIBIDOS
0

CLASIFICACIÓN
15.797 of 20.493

REPUTACIÓN
8

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
1 Archivo

DESCARGAS
1

ALL TIME DESCARGAS
90

CLASIFICACIÓN
7.624
of 159.663

CONTRIBUCIONES
0 Problemas
65 Soluciones

PUNTUACIÓN
819

NÚMERO DE INSIGNIAS
5

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • CUP Challenge Master
  • Commenter
  • Introduction to MATLAB Master
  • Knowledgeable Level 2
  • Community Group Solver
  • First Submission
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Respondida
Executing functions based on user input
clc clear all userString = input('What program would you like: ','s') switch userString case 'nice name one' na...

más de 4 años hace | 0

| aceptada

Respondida
ejecutar algoritmo secuencial, condicional
%Script: Reverse order of characters in strings %Wilmer Alexander Ticona alexanderticona.com clc clear all num=input('Ingr...

más de 4 años hace | 0

Respondida
1D transient heat equation
clc clear A=[-230,50,0,0,0,0,0,0,0,0,0; 50,-460,50,0,0,0,0,0,0,0,0; 0,50,-460,50,0,0,0,0,0,0,0; 0,0,50,-460,50,...

más de 4 años hace | 0

Respondida
PID Simulink Block Parameters

más de 4 años hace | 0

| aceptada

Pregunta


How can i successfully get the PID parameters using the point values ​​from the actual curve graph?
function y=reguladorPID(x,y) Kp= Ti= Td= y=[Kp Ti Td]; end

más de 4 años hace | 0 respuestas | 0

0

respuestas

Respondida
Matrix multiplication using a for loop
clear all n=16; P1=ones(n); P2=ones(n); for p=1:4:13 A(p,:) = [P1(p,p).*P2(p,1:4) P1(p,p+1).*P2(p,1:4) P1...

más de 4 años hace | 0

| aceptada