The extension of script files is
Can we have multiple 3d plots in MATLAB
A = [0 1; 1 0] ; B=2 ; C = A + B
Does the plot function take multiple arguments to a plot?
M-files are ASCII text files which are used to simplify our program editing in MATLAB
Where do we need to store a function to call it in other programs
Given the string str = "independence"
, how can you extract the substring "depend" from it?
What are MEX files in MATLAB
What is the nature of the arrangement of the coefficients to store the following expression in MATLAB?
y=7x^4+5x^3+2x+1
What will be the values of out1
and out2
in the following code?
pi_n = 3.14;
pi_s = "3.14";
out1 = pi_n + "1";
out2 = pi_s + 1;