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
Programming Languages:
MATLAB
Spoken Languages:
Spanish
MATLAB
Spoken Languages:
Spanish
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...
Executing functions based on user input
clc clear all userString = input('What program would you like: ','s') switch userString case 'nice name one' na...
4 years 前 | 0
| 已接受
已回答
ejecutar algoritmo secuencial, condicional
%Script: Reverse order of characters in strings %Wilmer Alexander Ticona alexanderticona.com clc clear all num=input('Ingr...
ejecutar algoritmo secuencial, condicional
%Script: Reverse order of characters in strings %Wilmer Alexander Ticona alexanderticona.com clc clear all num=input('Ingr...
4 years 前 | 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,...
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,...
4 years 前 | 0
提问
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
4 years 前 | 0 个回答 | 0
0
个回答已回答
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...
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...
4 years 前 | 0
| 已接受