
Sanchit Singla
Followers: 0 Following: 0
Estadística
0 Problemas
189 Soluciones
CLASIFICACIÓN
N/A
of 298.204
REPUTACIÓN
N/A
CONTRIBUCIONES
0 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.548
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
968
of 160.571
CONTRIBUCIONES
0 Problemas
189 Soluciones
PUNTUACIÓN
2.232
NÚMERO DE INSIGNIAS
6
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Resuelto
ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
MATLABでは,角括弧の中に要素を入れることで、ベクトルを作成できる。 x = [1 2 3 4] また次のようにも書ける(コンマはオプション)。 x = [1, 2, 3, 4] 問題:次のベクトルを出力する関数を作成せよ。...
alrededor de 4 años hace
Resuelto
Sum of odd numbers in a matrix
Find the sum of all the odd numbers in a matrix. Example x = [2 3 5 7 1 4 11] y = 27
más de 4 años hace
Resuelto
Create a Matrix of Zeros
Given an input x, create a square matrix y of zeros with x rows and x columns.
más de 4 años hace
Resuelto
Determine the square root
Determine the square root of the value the user has entered, n.
más de 4 años hace
Resuelto
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...
más de 4 años hace
Resuelto
Matlab Basics II - Extract last 3 elements of a vector
Let x be a vector of unknown length, we are always interested in the last 3 numbers in the vector, write a function that gives t...
más de 4 años hace
Resuelto
Change string to number
Change given string to number. (hint: there is already function) Changing from ['1234'] to [1234] is one of example
más de 4 años hace
Resuelto
Check if equal
Return true if all the elements of an nD array are equal, false otherwise.
más de 4 años hace
Resuelto
Sum the 'edge' values of a matrix
Sum the 'edge' values of an input matrix (the values along the perimeter). Example [1 2 3 4 5 6 7 8 9] Output = ...
más de 4 años hace
Resuelto
Cell joiner
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...
más de 4 años hace
Resuelto
Given a 4x4 matrix, swap the two middle columns
If a = [1 2 3 4; 1 2 3 4; 1 2 3 4; 1 2 3 4]; then the result is ans = 1 3 2 4 1 3 2...
más de 4 años hace
Resuelto
Back to basics 17 - white space
Covering some basic topics I haven't seen elsewhere on Cody. Remove the trailing white spaces from the input variable
más de 4 años hace
Resuelto
Find out value of sine given by degree.
Find out value of sine given by degree. If theta=30, it's value must be 0.5.
más de 4 años hace
Resuelto
Divide by 4
Given the variable x as your input, divide it by 4 and put the result in y.
más de 4 años hace
Resuelto
Area of a circle
Given the radius x, y would be the area of a circle. Pi = 3.1416
más de 4 años hace
Resuelto
Times 3 problem
When you enter the number, it should return the number multiplied by 3
más de 4 años hace
Resuelto
Rotate Matrix @180 degree
Rotate Matrix @180 degree Example A=[8 1 6; 3 5 7; 4 9 2], then answer would be [2 9 4;...
más de 4 años hace
Resuelto
What is Sum Of all elements of Matrix
Given the matrix x, return the sum of all elements of matrix. Example: Input x = [ 1 2 0 0 0 0 6 9 3 3 ] ...
más de 4 años hace
Resuelto
Square the input
Given a scalar or vector x, return the square of each element. Example x = [7 2] answer = [49 4]
más de 4 años hace
Resuelto
02 - Vector Variables 1
Make the following variable: <<http://samle.dk/STTBDP/Assignment1_2a.png>>
más de 4 años hace
Resuelto
matlab indian players
answer is one of the indian matlab player(just for fun dont take serious)
más de 4 años hace
Resuelto
Given area find sides
In a right angle triangle given area 'A' one arm=x, another arm=2x then find the value of x. For example, area A=400 then ...
más de 4 años hace
Resuelto
CONVERT TAN TO SIN
In a right angle triangle ABC given the tan(A) then find sin(A) For example tan(A)=3/4 then sin(A)=3/5
más de 4 años hace
Resuelto
Calculate distance travelled when given radius and rotations
When given radius of wheel and number of rotations calculate total distance travelled consider pi=3.14
más de 4 años hace
Resuelto
convert matrix to single column
given any matrix, convert it to single column
más de 4 años hace
Resuelto
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
más de 4 años hace