Community Profile

photo

Anisha Raut


Last seen: 10 months 前 自 2020 起处于活动状态

统计数据

  • Commenter
  • Solver

查看徽章

Content Feed

排序方式:

已解决


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]

3 years 前

已解决


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

3 years 前

已解决


Convert Fahrenheit to Celsius
Calculate the Celsius temperature C given the Fahrenheit temperature F. Examples: Input F = 90 Output C is 32.22 I...

3 years 前

已解决


Find the dimensions of a matrix
Just find the number of columns of the given matrix. Example x = [1 2 3 4 5 6] y = 2

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


Calculate Resistance
Calculate Resistance R of a linear conductor having resistivity p, length l and area A

3 years 前

已解决


Find Logic 8

3 years 前

已解决


Find Logic 6

3 years 前

已解决


Find Logic 4

3 years 前

已解决


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

3 years 前

已解决


Matlab Basics - y as a function of x
Write a function to calculate y as a function of x, such that y = 6x^2 + 5x - 2

3 years 前

已解决


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; ...

3 years 前

已解决


calculate the tangent of angle in radians
Calculate the tangent of angle in degrees

3 years 前

已解决


Speed of car
Calculate the Speed of car given its Distance travelled and time taken in x and y respectively

3 years 前

已解决


Create a Matrix of Zeros
Given an input x, create a square matrix y of zeros with x rows and x columns.

3 years 前

已解决


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

3 years 前

已解决


square number
Square a number

3 years 前

已解决


kmph to mps
convert kilometer per hour to meter per second

3 years 前

已解决


Equal to their cube
Tell me three real numbers that are equal to their cubes?

3 years 前

已解决


find radius of cone
if Slant height of Cone(I)& hight of Cone(H) given then find radius of the Cone(R) for example I=5,h=4 then the ans R=3;

3 years 前

已解决


Squaring Matrix
Square the following matrix using matlab % A = 1 2 3 4 5 6 7 8 So new matrix should display...

3 years 前

已解决


y equals x divided by 2
function y = x/2

3 years 前

已解决


Mode
Find the mode of the vector Assumption: no vector is bimodal Example 1: input=[1 2 3 4 4]; output=4 Example 2: input=[7...

3 years 前

已解决


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

3 years 前

已解决


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

3 years 前

已解决


Multiply by 3
Given the variable x as your input, multiply it by three and put the result in y.

3 years 前

已解决


Celsius to Kelvin
Convert Celsius degrees to Kelvin temperature.

3 years 前

已解决


What is the distance from point P(x,y) to the line Ax + By + C = 0?
Given a point, P(x,y), find the distance from this point to a linear line. INPUTS: x, y, A, B, C OUTPUTS: d, the distance ...

3 years 前

已解决


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

3 years 前

加载更多