Gistlib Logo

gistlib

in matlab create two variables: a = 4 and b = 17.2. use matlab to perform the following set of calculations. log(a^b) in matlab

main.m
a = 4;
b = 17.2;
result = log(a^b);
disp(result);
50 chars
5 lines

similar matlab code snippets

how to calculate the 99th percentile in matlab
how to calculate the mean of a vector in matlab
how to calculate the standard deviation of a vector in matlab
how to calculate the median of a vector in matlab
calculate the area of a sphere in matlab
how to calculate the mode of a vector in matlab
how to calculate the sum of a vector in matlab
how to calculate the variance of a vector in matlab
calculate the area of a triangle in matlab
calculate the volume of a pyramid in matlab

related categories

matlab
calculation

gistlibby LogSnag