A soumis


Solving a system of linear equations by Gauss Jordan
Ticona, A. (2020), performed the function "Solving a Simultaneous Linear Equation System by Gauss Jordan".

plus de 3 ans il y a | 1 téléchargement |

Thumbnail

Question


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

plus de 3 ans il y a | 1 réponse | 0

0

réponse

A répondu
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...

plus de 3 ans il y a | 0

| A accepté

A résolu


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

plus de 3 ans il y a

A résolu


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

plus de 3 ans il y a

A résolu


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

plus de 3 ans il y a

A résolu


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

plus de 3 ans il y a

A résolu


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

plus de 3 ans il y a

A résolu


Create a vector
Create a vector from 0 to n by intervals of 2.

plus de 3 ans il y a

A résolu


Find max
Find the maximum value of a given vector or matrix.

plus de 3 ans il y a

A résolu


Add two numbers
Given a and b, return the sum a+b in c.

plus de 3 ans il y a

A résolu


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

plus de 3 ans il y a