Gistlib Logo

gistlib

in matlab create two variables: a = 4 and b = 17.2. use matlab to perform the following set of calculations. 10√(5𝑎 + 16) in matlab

main.m
a = 4;
b = 17.2;
result = 10*sqrt(5*a + 16)
44 chars
4 lines

similar matlab code snippets

how to calculate the volume of a sphere in matlab
how to calculate the area of a ellipse in matlab
how to calculate the secant of an angle in degrees in matlab
how to calculate the volume of a prism in matlab
how to calculate the first derivative of a function in matlab
how to calculate the arccosine of an angle in matlab
find the roots of a polynomial in matlab
how to calculate the arccosine of an angle in degrees in matlab
how to calculate the area of a triangle in matlab
find the slope of a set of points in matlab

related categories

matlab
mathematics

gistlibby LogSnag