Community Profile

photo

Anisha Raut


Last seen: 10 månader ago Active since 2020

Statistics

  • Commenter
  • Solver

View badges

Content Feed

View by

Solved


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]

mer än 3 år ago

Solved


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

mer än 3 år ago

Solved


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

mer än 3 år ago

Solved


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

mer än 3 å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]

mer än 3 å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...

mer än 3 år ago

Solved


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

mer än 3 år ago

Solved


Find Logic 8

mer än 3 år ago

Solved


Find Logic 6

mer än 3 år ago

Solved


Find Logic 4

mer än 3 år ago

Solved


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

mer än 3 år ago

Solved


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

mer än 3 år ago

Solved


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

mer än 3 år ago

Solved


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

mer än 3 år ago

Solved


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

mer än 3 år ago

Solved


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

mer än 3 år ago

Solved


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

mer än 3 år ago

Solved


square number
Square a number

mer än 3 år ago

Solved


kmph to mps
convert kilometer per hour to meter per second

mer än 3 år ago

Solved


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

mer än 3 år ago

Solved


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;

mer än 3 år ago

Solved


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

mer än 3 år ago

Solved


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

mer än 3 år ago

Solved


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

mer än 3 år ago

Solved


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

mer än 3 å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 ...

mer än 3 år ago

Solved


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

mer än 3 år ago

Solved


Celsius to Kelvin
Convert Celsius degrees to Kelvin temperature.

mer än 3 år ago

Solved


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

mer än 3 år ago

Solved


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

mer än 3 år ago

Load more