vidushi Chaudhary
Followers: 0 Following: 0
Statistica
5 Domande
0 Risposte
RANK
8.593
of 295.527
REPUTAZIONE
5
CONTRIBUTI
5 Domande
0 Risposte
ACCETTAZIONE DELLE RISPOSTE
40.0%
VOTI RICEVUTI
4
RANK
of 154.057
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Domanda
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 ...
oltre 4 anni fa | 0 risposte | 0
0
risposteDomanda
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; ...
oltre 4 anni fa | 1 risposta | 0
1
rispostaDomanda
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,...
oltre 4 anni fa | 24 risposte | 2
24
risposteDomanda
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 ...
oltre 4 anni fa | 1 risposta | 0
1
rispostaDomanda
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...
oltre 4 anni fa | 1 risposta | 2