
Wilmer Alexander - Conferencista en Automatización y Robótica más influyente en Iberoamérica
IMAPLI
Followers: 0 Following: 0
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
MATLAB
Spoken Languages:
Spanish
Estadística
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
Feeds
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
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
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
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
respuestasMatrix 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