Community Profile

photo

Gonzalo


Last seen: ungefär ett år ago Active since 2023

Followers: 0   Following: 0

Statistics

  • Community Group Solver
  • Solver

View badges

Feeds

View by

Solved


Matlab Basics II - Count rows in a matrix
Write a function that returns that number of rows in a vector or matrix x example: x = [1; 2; 3] output = 3

ungefär ett år ago

Solved


Matrix multiplication
Multiply two incoming matrices via matrix multiplication

ungefär ett år ago

Solved


Sum two matrices
Take two incoming matrices, and sum them

ungefär ett år ago

Solved


Negative Infinity
Round the given array a towards negative infinity.

ungefär ett år ago

Solved


Create a Standard Size Vector
Given an input x, create a row vector y from 1 to x with 5 elements.

ungefär ett år ago

Solved


Square a Number
Given an input x, return y, which is equal to the square of x.

ungefär ett år ago

Solved


kmph to mps
convert kilometer per hour to meter per second

ungefär ett år ago

Solved


Cumulative product of a vector
Cumulative product of a vector example x=[1 2 5 10], then answer must be [ 1 2 10 100] *If you like this prob...

ungefär ett år ago

Solved


Matrix to column conversion
Given a matrix of any size, convert it into a column vector. e.g A=[10 20 30; 40 50 60] then, B = [10; 40; ...

ungefär ett år ago

Solved


Matlab Basics - Convert a row vector to a column vector
Write a script to convert a row (e.g. x = [1 2 3]) to a column (e.g. y = [1;2;3]), your script should be able to do this for any...

ungefär ett år ago

Solved


Round to nearest integer

ungefär ett år ago

Solved


Add two numbers
Calculate the sum of two numbers. Example input = [2 3] output = 5

ungefär ett år ago

Solved


Convert yards to feet
The goal of this script is to convert a value given in yards to feet.

ungefär ett år ago

Solved


Vector Multiplication
Vector Multiplication of three matrix as shown in test cases.

ungefär ett år ago

Solved


given 3 sides, find area of this triangle
1:3 -> 0; 3:5 -> 6

ungefär ett år ago

Solved


easy problem
Find the last element of the array

ungefär ett år ago

Solved


calculate the length of matrix
input 1 array, calculate the length

ungefär ett år ago

Solved


Square the input
Given a scalar or vector x, return the square of each element. Example x = [7 2] answer = [49 4]

ungefär ett år ago

Solved


select the primes of a vector
Find the prime numbers in a vector

ungefär ett år ago

Solved


Switch matrix to a column vector
for e.g. x = [1 2 3 4] y = 1 3 2 4

ungefär ett år ago

Solved


length of a vector
Find twice the length of a given vector.

ungefär ett år ago

Solved


Array of Ones
Create a 100 X 100 array of ones.

ungefär ett år ago

Solved


Matlab Basics - Absolute Value
Write a script that returns the absolute value of the elements in x e.g. x = [-1 -2 -3 -4] --> y = [1 2 3 4]

ungefär ett år ago

Solved


Celsius to Fahrenheit converter
Convert Celsius to Fahrenheit degrees.

ungefär ett år ago

Solved


multiply by three
Given the variable x as your input, multiply it by 3 and put the result equal to y. Examples: Input x = 2 Output y is ...

ungefär ett år ago

Solved


Determine the square root
Determine the square root of the value the user has entered, n.

ungefär ett år ago

Solved


The sum of the numbers in the vector
eg. [1,2,3]---->SUM=6

ungefär ett år ago

Solved


Divide by 4
Given the variable x as your input, divide it by four and put the result in y.

ungefär ett år ago

Solved


Max of a Vector
Write a function to return the max of a vector

ungefär ett år ago

Solved


Square root of a number
Write a code that will output the square root of x.

ungefär ett år ago

Load more