a = [1:2]’ ;
size(a)
size = [1 7]’ ;
size(size)
The spy command takes in multiple matrices.
MATLAB sees a ________ ordered variable as a vector of dimension n*1.
What are the functions to see the graph of a continuous function
We can find the summation of an A.G.P. series using
_______ function is used to close the windows containing graphs generated from MATLAB
>>clipboard(‘paste’, ‘Do re Mi fa’)
ans =
‘poe’
What is the code to solve lim x→1 (logx)^logx
X = [1 2 3;4 5 6;7 8 9];
Y = [9 8 7;6 5 4;3 2 1];
R = rem(X,Y)