Submitted


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

bijna 4 jaar ago | 1 download |

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

bijna 4 jaar ago | 0 answers | 0

0

answers

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

bijna 4 jaar ago | 0

| accepted

Solved


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

bijna 4 jaar ago

Solved


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

bijna 4 jaar ago

Solved


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

bijna 4 jaar ago

Solved


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

bijna 4 jaar ago

Solved


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

bijna 4 jaar ago

Solved


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

bijna 4 jaar ago

Solved


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

bijna 4 jaar ago

Solved


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

bijna 4 jaar ago

Solved


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

bijna 4 jaar ago