![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/19979342_1602714240603_DEF.jpg)
Bryce McCord
Followers: 0 Following: 0
Statistica
5 Domande
0 Risposte
RANK
183.423
of 297.016
REPUTAZIONE
0
CONTRIBUTI
5 Domande
0 Risposte
ACCETTAZIONE DELLE RISPOSTE
40.0%
VOTI RICEVUTI
0
RANK
of 157.725
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
Add code to have switch repeat if a case is not met
fprintf('Difficulty level: \nEasy: [0, 10] \nMedium: [0, 50] \nHard: [0, 100] \n'); % Print statement outputting different diffi...
oltre 2 anni fa | 3 risposte | 0
3
risposteDomanda
How to eliminate the for loop but end with the same result
A = input('Using brackets, enter a vector: ') for i=1:length(A) if(A(i) > 0) B(i) = A(i).^3; else ...
oltre 2 anni fa | 1 risposta | 0
1
rispostaDomanda
How do I rewrite this code to output the same answer without the for loops
A = [1 3 5 7 9]; B = [2 4 6 8 10]; L = min([length(A) length(B)]); C = zeros(1, 2*L); for i=1:L C(2*(i-1)+1) = A(i); C(2*i...
oltre 2 anni fa | 1 risposta | 0
1
rispostaDomanda
Building a function that calls on an array and finds its maximum
Can somebody help/ give me an example of a function that would find the maximum of an array. Any help would be appreciated.
oltre 4 anni fa | 0 risposte | 0
0
risposteDomanda
Bisection method help.
function [f] = Bisection(a, b, Nmax, TOL); f=@(x) x.*x.*x.-2; i=1; BisectA = f(a) while i <= Nmax p=a+(b-a)/2; ...
oltre 4 anni fa | 1 risposta | 0