Community Profile

photo

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


IMAPLI

Last seen: 6 Monate vor Aktiv seit 2020

Followers: 0   Following: 0

Kontakt

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

Statistiken

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

Abzeichen anzeigen

Feeds

Anzeigen nach

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

mehr als 3 Jahre vor | 0

| akzeptiert

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

mehr als 3 Jahre vor | 0

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

mehr als 3 Jahre vor | 0

Beantwortet
PID Simulink Block Parameters

mehr als 3 Jahre vor | 0

| akzeptiert

Frage


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

fast 4 Jahre vor | 0 Antworten | 0

0

Antworten

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

fast 4 Jahre vor | 0

| akzeptiert