Community Profile

photo

Gonzalo


Last seen: 約1年 前 2023 年からアクティブ

Followers: 0   Following: 0

統計

  • Community Group Solver
  • Solver

バッジを表示

Feeds

表示方法

解決済み


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

約1年 前

解決済み


Matrix multiplication
Multiply two incoming matrices via matrix multiplication

約1年 前

解決済み


Sum two matrices
Take two incoming matrices, and sum them

約1年 前

解決済み


Negative Infinity
Round the given array a towards negative infinity.

約1年 前

解決済み


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

約1年 前

解決済み


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

約1年 前

解決済み


kmph to mps
convert kilometer per hour to meter per second

約1年 前

解決済み


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...

約1年 前

解決済み


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; ...

約1年 前

解決済み


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...

約1年 前

解決済み


Round to nearest integer

約1年 前

解決済み


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

約1年 前

解決済み


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

約1年 前

解決済み


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

約1年 前

解決済み


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

約1年 前

解決済み


easy problem
Find the last element of the array

約1年 前

解決済み


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

約1年 前

解決済み


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

約1年 前

解決済み


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

約1年 前

解決済み


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

約1年 前

解決済み


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

約1年 前

解決済み


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

約1年 前

解決済み


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]

約1年 前

解決済み


Celsius to Fahrenheit converter
Convert Celsius to Fahrenheit degrees.

約1年 前

解決済み


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 ...

約1年 前

解決済み


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

約1年 前

解決済み


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

約1年 前

解決済み


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

約1年 前

解決済み


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

約1年 前

解決済み


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

約1年 前

さらに読み込む