Ali Mazak - MATLAB Central
photo

Ali Mazak


Last seen: circa un mese fa Attivo dal 2023

Followers: 0   Following: 1

Messaggio

Systems Engineering Student

Programming Languages:
Python, C++, C, MATLAB
Spoken Languages:
English, German, Turkish
Pronouns:
He/him

Statistica

CodyFrom 09/23 to 03/25Use left and right arrows to move selectionFrom 09/23Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%

RANK
40.151
of 158.407

CONTRIBUTI
0 Problemi
8 Soluzioni

PUNTEGGIO
95

NUMERO DI BADGE
1

  • Solver

Visualizza badge

Feeds

Visto da

Risolto


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

oltre un anno fa

Risolto


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

oltre un anno fa

Risolto


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

oltre un anno fa

Risolto


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

oltre un anno fa

Risolto


Symmetry of vector
Determine whether the vector is symmetric or not (vector could be even or odd in length). For example: x = [1 2 3 3 2 1] is s...

oltre un anno fa

Risolto


Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
For a row vector: V=[7 1 2 -3] there is one sign change (from 2 to -3). So, the function you write must return N=1. F...

oltre un anno fa

Risolto


Return area of square
Side of square=input=a Area=output=b

oltre un anno fa

Risolto


Convert from Fahrenheit to Celsius
Given an input vector F containing temperature values in Fahrenheit, return an output vector C that contains the values in Celsi...

oltre un anno fa

Go to top of page