Gistlib Logo

gistlib

for 𝑨 = [ 4 −1 −2 1 ], 𝑩 = [2 1 −1], 𝑪 = [−1 2 3 0 0 1], 𝑫 = [7 4] in matlab

main.m
A = [4, -1, -2, 1];
B = [2, 1, -1];
C = [-1, 2, 3, 0, 0, 1];
D = [7, 4];
73 chars
5 lines

similar matlab code snippets

use the elements of an array as function arguments in matlab
reverse a character array in matlab
insert code to determine the size of the times table in matlab
how to replace each element in a array with the row of another array in matlab
make a random 100-by-100 matrix in matlab
generate tribonacci sequence in matlab
create a matrix with only pi and size 3x3 in matlab
add element to empty cell in matlab
make a matrix in matlab
find the thirteen adjacent digits in the 1000-digit number that have the greatest product. what is the value of this product? in matlab

related categories

matlab
arrays

gistlibby LogSnag