photo

JINSOL.KIM


HYUNDAI MOTORS

Con actividad desde 2015

Followers: 0   Following: 0

Mensaje

AUTOMOTIVE ENGINEER
www.jinsolkim.kr

Estadística

All
MATLAB Answers

10 Preguntas
0 Respuestas

Cody

0 Problemas
113 Soluciones

CLASIFICACIÓN
21.798
of 300.364

REPUTACIÓN
2

CONTRIBUCIONES
10 Preguntas
0 Respuestas

ACEPTACIÓN DE RESPUESTAS
50.0%

VOTOS RECIBIDOS
1

CLASIFICACIÓN
 of 20.934

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN
4.047
of 168.407

CONTRIBUCIONES
0 Problemas
113 Soluciones

PUNTUACIÓN
1.040

NÚMERO DE INSIGNIAS
1

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Thankful Level 1
  • Solver

Ver insignias

Feeds

Ver por

Resuelto


Find a Pythagorean triple
Given four different positive numbers, a, b, c and d, provided in increasing order: a < b < c < d, find if any three of them com...

alrededor de 9 años hace

Pregunta


Is MATLAB permanant or renewal when I purchased the MATLAB standard version ?
Is MATLAB permanant or renewal when I purchased the MATLAB standard version ?

alrededor de 9 años hace | 1 respuesta | 0

1

respuesta

Resuelto


Back to basics 11 - Max Integer
Covering some basic topics I haven't seen elsewhere on Cody. Return the largest positive integer MATLAB can handle.

alrededor de 9 años hace

Resuelto


given 3 sides, find area of this triangle
1:3 -> 0; 3:5 -> 6

alrededor de 9 años hace

Resuelto


Assigning a sum
* Write a statement that assigns numCoins with numNickels + numDimes.

alrededor de 9 años hace

Resuelto


Given a window, how many subsets of a vector sum positive
Given a vector: [1 0 -1 3 2 -3 1] and a window of 2, A sliding window would find: 1 + 0 = 1 0 - 1 = -1 ...

alrededor de 9 años hace

Resuelto


Circle area using pi
Write a statement that assigns circleArea with the circle's area given circleRadius. Use the built-in mathematical constant pi. ...

alrededor de 9 años hace

Resuelto


Side of an equilateral triangle
If an equilateral triangle has area A, then what is the length of each of its sides, x? <<http://upload.wikimedia.org/wikipe...

más de 9 años hace

Resuelto


Dimensions of a rectangle
The longer side of a rectangle is three times the length of the shorter side. If the length of the diagonal is x, find the width...

más de 9 años hace

Resuelto


Back to basics 22 - Rotate a matrix
Covering some basic topics I haven't seen elsewhere on Cody. Rotate the input matrix 90 degrees counterclockwise (e.g. [1 2; ...

más de 9 años hace

Resuelto


Is this triangle right-angled?
Given any three positive numbers a, b, c, return true if the triangle with sides a, b and c is right-angled. Otherwise, return f...

más de 9 años hace

Resuelto


Program an exclusive OR operation with logical operators
Program an exclusive or operation *without* using the MATLAB function xor. Use logical operators like |, &, ~, ... instead. ...

más de 9 años hace

Resuelto


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

más de 9 años hace

Resuelto


Area of an equilateral triangle
Calculate the area of an equilateral triangle of side x. <<http://upload.wikimedia.org/wikipedia/commons/e/e0/Equilateral-tr...

más de 9 años hace

Resuelto


Indexed Probability Table
This question was inspired by a Stack Overflow question forwarded to me by Matt Simoneau. Given a vector x, make an indexed pro...

más de 9 años hace

Resuelto


Area of an Isoceles Triangle
An isosceles triangle has equal sides of length x and a base of length y. Find the area, A, of the triangle. <<http://upload...

más de 9 años hace

Pregunta


How can I connect raspberry pi with laptop?
I have learned from many articles that how to use Simulink block with the raspberry pi. But I don't know how to connect it with...

más de 9 años hace | 0 respuestas | 0

0

respuestas

Pregunta


["The number of license is short"], I got this message when I install.
What should I do if I continue install? should I renewal the license with paying?

más de 9 años hace | 1 respuesta | 0

1

respuesta

Resuelto


Implement simple rotation cypher
If given a letter from the set: [abc...xyz] and a shift, implement a shift cypher. Example: 'abc' with a shi...

casi 10 años hace

Resuelto


Find the two most distant points
Given a collection of points, return the indices of the rows that contain the two points most distant from one another. The inpu...

casi 10 años hace

Resuelto


Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...

casi 10 años hace

Pregunta


How to get result as string from curve fitting?
<</matlabcentral/answers/uploaded_files/40515/Selection_010.png>> As shown, I want to get result as string. (Linear model Pol...

casi 10 años hace | 2 respuestas | 0

2

respuestas

Pregunta


How to use java class that I made in matlab?
How to use java class that I made in matlab? I made a package. So, I want to use it in the MATLAB. But I can't do it. ex)...

casi 10 años hace | 1 respuesta | 0

1

respuesta

Resuelto


All capital?
Are all the letters in the input string capital letters? Examples: 'MNOP' -> 1 'MN0P' -> 0

casi 10 años hace

Resuelto


Back to basics 8 - Matrix Diagonals
Covering some basic topics I haven't seen elsewhere on Cody. Given an input vector of numbers, output a square array with the...

casi 10 años hace

Resuelto


Remove all the words that end with "ain"
Given the string s1, return the string s2 with the target characters removed. For example, given s1 = 'the main event' your ...

casi 10 años hace

Resuelto


Sums with Excluded Digits
Add all the integers from 1 to n in which the digit m does not appear. m will always be a single digit integer from 0 to 9. no...

casi 10 años hace

Resuelto


Return the first and last character of a string
Return the first and last character of a string, concatenated together. If there is only one character in the string, the functi...

casi 10 años hace

Resuelto


Extract leading non-zero digit
<http://en.wikipedia.org/wiki/Benford%27s_law Benford's Law> states that the distribution of leading digits is not random. This...

casi 10 años hace

Resuelto


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

casi 10 años hace

Cargar más