To represent only two digits after the decimal point, the format we use is _____
predict the error
g = inline(‘3x+5*x’, ‘t’)
What is the size of symbolic variables holding integer constants
The largest and smallest values for the 8-bit integer data type (int8) are 127 and -128, respectively.
How many times will the following loop run?
for i=1:5
if(i<3) break
end
How to add a title to describe the subplots generated in MATLAB?
How can we check in MATLAB if an electrical circuit is linear or not
What type of plot would you use to show comparisons of profit across 3 industries over 3 quarters?
Predict the error, if any, that MATLAB will generate in the following line of code:
g = inline('3^x+5*x', 't')
What is the error in the code?
a = [[1, 2]; [2, 3]]