Solved


ASCii Code
Using Matlab get the ASCii for '?'

ongeveer 7 jaar ago

Solved


Matlab Basics - Create a row vector
Write a Matlab script to create a row vector of 10 consecutive numbers x = [1 2 3 4 5 6 7 8 9 10]

ongeveer 7 jaar ago

Solved


Concatenate two strings
Its very easy. Just concatenate two strings.

ongeveer 7 jaar ago

Solved


convert matrix to single column
given any matrix, convert it to single column

ongeveer 7 jaar ago

Solved


Matlab Basics - Rounding II
Write a script to round a variable x to 3 decimal places: e.g. x = 2.3456 --> y = 2.346

ongeveer 7 jaar ago

Solved


Compare two input matrices
Check which input matrix has more elements. Return "1" if matrix A has more elements than matrix B. Otherwise return "0". Exa...

ongeveer 7 jaar ago

Solved


Volume of a box
Given a box with a length a, width b, and height c. Solve the volume of the box.

ongeveer 7 jaar ago

Solved


matlab indian players
answer is one of the indian matlab player(just for fun dont take serious)

ongeveer 7 jaar 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

ongeveer 7 jaar ago

Solved


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

ongeveer 7 jaar ago

Solved


Reverse a matrix
Its simple. You have to reverse a given matrix.

ongeveer 7 jaar ago

Solved


Sum of the Matrix Elements
Add up all the elements in a NxM matrix where N signifies the number of the rows and M signifies the number of the columns. E...

ongeveer 7 jaar ago

Solved


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]

ongeveer 7 jaar ago

Solved


Add damping to a mass spring system
Model an ideal mass-spring-damper system shown below where the spring is initially stretched. <<http://blogs.mathworks.com/im...

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

ongeveer 7 jaar ago

Solved


Area of a Square
Inside a square is a circle with radius r. What is the area of the square?

ongeveer 7 jaar ago

Solved


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

ongeveer 7 jaar ago

Solved


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

ongeveer 7 jaar ago

Solved


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

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

ongeveer 7 jaar ago

Solved


Model a mass spring system
Model an ideal mass-spring system shown below where the spring is initially stretched. <<http://blogs.mathworks.com/images/se...

ongeveer 7 jaar ago

Solved


Beginner's Problem - Squaring
Try out this test problem first. Given the variable x as your input, square it by two and put the result in y. Examples: ...

ongeveer 7 jaar ago

Solved


Y=X
Given an input variable x, output a variable y that is equal in value to x. Example: Input x = 1 Output y is 1 Inp...

ongeveer 7 jaar ago

Solved


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

ongeveer 7 jaar ago

Solved


Decimal Comparison
*Background* A utility of particular interest to Cody and other MATLAB ventures is comparing the equality of two numbers. In ...

ongeveer 7 jaar ago

Solved


Without french accent please !
Suppress french accent For example 'Déjà présent' -> 'Deja present'

ongeveer 7 jaar ago

Solved


Formatting currency numbers
Given a number, format it properly for textual display using the notation $xxx,xxx,xxx.xx. Assume that no more than two digits ...

ongeveer 7 jaar ago

Solved


Ordinal numbers
Given an integer n, return the corresponding ordinal number as a character string. For example, ord(1)='1st' ord(2)=...

ongeveer 7 jaar ago

Solved


Transposition as a CIPHER
This all about transcripting a text message. If the input string is: *s1 = 'My name is Sourav Mondal'*, then the output is: *s2...

ongeveer 7 jaar ago

Solved


Convert a structure into a string
Convert the contents of each fields into a string. Example with an input structure s with 2 fields : s.age = '33' s....

ongeveer 7 jaar ago

Load more