Estadística
0 Problemas
10 Soluciones
CLASIFICACIÓN
262.334
of 301.287
REPUTACIÓN
0
CONTRIBUCIONES
1 Pregunta
1 Respuesta
ACEPTACIÓN DE RESPUESTAS
0.0%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 21.220
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
38.984
of 173.777
CONTRIBUCIONES
0 Problemas
10 Soluciones
PUNTUACIÓN
116
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Simulink Onramp 학습을 완료했으나 진도보고서 및 인증서에 0%로 나옵니다.
위 질문을 하고 나서, 혹시나 하여, MATLAB, Simulink의 평가판으로 설치하여 다시 Simulink Oramp를 평가판에서 실행해 보았습니다. 교육 과정 중 첫 챕터만 진행하고 교육 홈에서 Simulink Onramp의...
alrededor de 4 años hace | 0
Pregunta
Simulink Onramp 학습을 완료했으나 진도보고서 및 인증서에 0%로 나옵니다.
안녕하세요? 교육 운영진에게 문의하는 메뉴를 찾지 못하여 여기에 질문을 남겨 봅니다. MATLAB Onramp를 수강 완료한 후 이어서 Simulink Onramp를 수강했습니다. 그런데 수강 진행 중에도 진도보고서나 인증서에...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaResuelto
Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...
alrededor de 4 años hace
Resuelto
Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...
alrededor de 4 años hace
Resuelto
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...
alrededor de 4 años hace
Resuelto
Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...
alrededor de 4 años hace
Resuelto
Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...
alrededor de 4 años hace
Resuelto
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
alrededor de 4 años hace
Resuelto
Interpolator
You have a two vectors, a and b. They are monotonic and the same length. Given a value, va, where va is between a(1) and a(end...
alrededor de 4 años hace
Resuelto
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
alrededor de 4 años hace
Resuelto
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
alrededor de 4 años hace
