photo

RITU SINGH


Con actividad desde 2017

Followers: 0   Following: 0

Estadística

Feeds

Ver por

Pregunta


Write a function called sindeg that takes a matrix input called deg. The function returns a matrix of the same size as deg with elements containing the sine of the corresponding element of deg and mean of the sine.we are nor allowed builtin functions
function [sine,mean_sine] = sindeg(deg) sine = (exp(i*deg) - exp(-i*deg))/(2i) mean_sine=sine/length(deg) I am not ge...

alrededor de 7 años hace | 2 respuestas | 0

2

respuestas