photo

vidushi Chaudhary


Last seen: más de 5 años hace Con actividad desde 2020

Followers: 0   Following: 0

Estadística

MATLAB Answers

5 Preguntas
0 Respuestas

CLASIFICACIÓN
8.879
of 300.343

REPUTACIÓN
5

CONTRIBUCIONES
5 Preguntas
0 Respuestas

ACEPTACIÓN DE RESPUESTAS
40.0%

VOTOS RECIBIDOS
4

CLASIFICACIÓN
 of 20.926

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 168.172

CONTRIBUCIONES
0 Problemas
0 Soluciones

PUNTUACIÓN
0

NÚMERO DE INSIGNIAS
0

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Thankful Level 2
  • Thankful Level 1

Ver insignias

Feeds

Ver por

Pregunta


What is wrong with my code.It's not producing correct figure.The axis should run from -1 to 1,but it's not!
Problem 24. Write a function called make_square_waves that takes two positive integers as input arguments (it does not have to ...

más de 5 años hace | 0 respuestas | 0

0

respuestas

Pregunta


What is wrong with my code.I want to connect stars(*)by straight line,but it's printing only points,not line!
function draw_constellations set(gcf,'color','m'); set(gca,'color','m'); axis([0 100 0 100]) hold on; ...

más de 5 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Write a function max_sum that takes v a row vector of numbers & n,a positive integer as inputs.The function needs to find n consecutive elements of v whose sum is largest possible.It returns summa & index of first element of n consecutive integers.
%Example-[summa,index]=max_sum([1 2 3 4 5 4 3 2 1],3) % summa=13 % index=4 function [summa,index]=max_sum(v,n) total=v(1,...

más de 5 años hace | 24 respuestas | 2

24

respuestas

Pregunta


Please find the error
%Write a function called max_sum that takes v as a row vector of numbers, & n,a postive integer as inputs.The function needs to ...

más de 5 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How can I overcome the error "variable admit must be of data type logical instead of double"..I have to return logical values true or false using the function below.what is wrong with this?
function admit=eligible(v,q) avg=(v+q)/2; if avg>=92 ...%% && v>88 ... %% && q>88 %% admit=1; else admit=0...

más de 5 años hace | 1 respuesta | 2

1

respuesta