
Programming Languages:
Python
Spoken Languages:
French
Professional Interests:
Real-Time Simulation and Testing, Mechanical Engineering
Python
Spoken Languages:
French
Professional Interests:
Real-Time Simulation and Testing, Mechanical Engineering
Statistics
Cody
0 문제
22 해답
순위
N/A
of 260,686
평판
N/A
참여
0 질문
0 답변
답변 채택
0.00%
획득한 표
0
순위
11,390
of 112,112
참여
0 문제
22 해답
점수
295
배지 수
3
참여
0 게시물
참여
0 공개 채널
평균 평점
참여
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
해결됨
Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...
약 1달 전
해결됨
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 C...
약 1달 전
해결됨
Calculate Amount of Cake Frosting
Given two input variables |r| and |h|, which stand for the radius and height of a cake, calculate the surface area of the cake y...
약 1달 전
해결됨
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 ...
약 1달 전
해결됨
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 ...
약 1달 전
해결됨
Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.
약 1달 전
해결됨
Get the length of a given vector
Given a vector x, the output y should equal the length of x.
약 1달 전
해결됨
Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...
약 1달 전
해결됨
Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]
약 1달 전
해결됨
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...
약 1달 전
해결됨
Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.
약 1달 전
해결됨
Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<https://i.imgu...
약 2달 전
해결됨
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
약 2달 전
해결됨
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
약 2달 전
해결됨
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
약 2달 전