Statistica
0 Problemi
86 Soluzioni
RANK
N/A
of 302.101
REPUTAZIONE
N/A
CONTRIBUTI
0 Domande
0 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Risolto
Matlab Basics - Rounding I
Write a script to round x DOWN to the next lowest integer: e.g. x = 2.3 --> x = 2 also: x = 2.7 --> x = 2
oltre un anno fa
Risolto
Matlab Basics II - squares
Write a function that takes matrix A, and squares each element in the matrix example: A = [1 2 3] output = [1 4 9]
oltre un anno fa
Risolto
Area of a Square
Given the length x of the side of a regular square, find the area of the square, A.
oltre un anno fa
Risolto
Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.
oltre un anno fa
Risolto
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 to use d...
oltre un anno fa
Risolto
If you have matrix A, create matrix B using matrix A as an "element"
A = [1 2 3 4; 5 6 7 8] B = [1 2 3 4 1 2 3 4; 5 6 ...
oltre un anno fa
Risolto
Given the variable x as your input, multiply it by four, then divide it by two. Then put the result in y.
If x = 5, y = 4*5/2 = 10
oltre un anno fa
Risolto
Square root of a number
Write a code that will output the square root of x.
oltre un anno fa
Risolto
Area of a circle
Given the radius x, y would be the area of a circle. Pi = 3.1416
oltre un anno fa
Risolto
Write a code that will follow the equation y = x * (x + x) * x.
If x = 5, y = 5 * (5+5) * 5 = 250
oltre un anno fa
Risolto
Area of a triangle
A triangle is given with base *'b'* ,vertical hight *'h'* . then find it's area.
oltre un anno fa
Risolto
Area of a Square
Inside a square is a circle with radius r. What is the area of the square?
oltre un anno fa
Risolto
Roots
Find out the roots of a given polynomial equation.Given are the coefficients of the equation.
oltre un anno fa
Risolto
Find The area of the square
Given that the length of the side of a square is x, find the area.
oltre un anno fa
Risolto
Create sequnce 1 4 9 16 25.........
Create sequnce 1 4 9 16 25......... upto entered input value using matlab scripting commands. Let y be output and x be input
oltre un anno fa
Risolto
Find minimum and maximum elements of an array
For a given array find minimum and maximum elements of an array and store minimum value in first index of output and maximum in ...
oltre un anno fa
Risolto
Create a Matrix of Zeros
Given an input x, create a square matrix y of zeros with x rows and x columns.
oltre un anno fa
Risolto
Square a Number
Given an input x, return y, which is equal to the square of x.
oltre un anno fa
Risolto
Slope intercept application
Find y given slope (m), x, and y intercept (b).
oltre un anno fa

