Erivelton Gualter
Cleveland State University
Followers: 0 Following: 0
Estadística
3 Preguntas
19 Respuestas
0 Problemas
20 Soluciones
CLASIFICACIÓN
1.127
of 295.467
REPUTACIÓN
63
CONTRIBUCIONES
3 Preguntas
19 Respuestas
ACEPTACIÓN DE RESPUESTAS
100.0%
VOTOS RECIBIDOS
12
CLASIFICACIÓN
of 20.234
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
21.624
of 153.912
CONTRIBUCIONES
0 Problemas
20 Soluciones
PUNTUACIÓN
220
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
Pregunta
How to replace string that perfectly matchs the string?
The title might be a litle vague, but I am looking to replace a string on a text by another string using regexprep or any other ...
más de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Replace group of special character with a single character
Hello everyone, I have a question related to regular expression. Let's say I have the following string: str = vertcat(... ...
más de 4 años hace | 1 respuesta | 0
1
respuestaResuelto
Linear system of equations
Solve the system of equations in three variables.
alrededor de 5 años hace
how can i read data given from a txt file and plot graph
You may check this other anser related to import data: https://www.mathworks.com/matlabcentral/answers/460098-import-text-data-...
más de 5 años hace | 0
Resuelto
Target sorting
Sort the given list of numbers |a| according to how far away each element is from the target value |t|. The result should return...
más de 5 años hace
Resuelto
Read a column of numbers and interpolate missing data
Given an input cell array of strings s, pick out the second column and turn it into a row vector of data. Missing data will be i...
más de 5 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...
más de 5 años hace
Resuelto
Duplicates
Write a function that accepts a cell array of strings and returns another cell array of strings *with only the duplicates* retai...
más de 5 años hace
Resuelto
Counting Sequence
Given a vector x, find the "counting sequence" y. A counting sequence is formed by "counting" the entries in a given sequence...
más de 5 años hace
Randomly dividing an integer (non-uniform distribution)
How about you generate n variable from a desired range. For example: n = (b-a)*rand(1,M)+a; So you have, % Range a = 0.01; ...
más de 5 años hace | 1
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...
más de 5 años hace
Resuelto
Find common elements in matrix rows
Given a matrix, find all elements that exist in every row. For example, given A = 1 2 3 5 9 2 5 9 3 2 5 9 ...
más de 5 años hace
Resuelto
matrix of natural number
Given a number n, create an n-by-n matrix in which the integers from 1 to n^2 resides seially as shown in the examples below. ...
más de 5 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 5 años hace
How to smooth the plot graph?
After you plot the position profile add the following code: for i=5:30; p = polyfit(time, theta,i); y1 = polyval(p,ti...
más de 5 años hace | 0
Resuelto
Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...
más de 5 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...
más de 5 años hace
Resuelto
Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; ...
más de 5 años hace
Resuelto
Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...
más de 5 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...
más de 5 años hace
Resuelto
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
más de 5 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:...
más de 5 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...
más de 5 años hace
Runge Kutta 4th order
Your code seems to have some issues. Try this one: h = pi/10; x = 0 : h : 2*pi; n = length(x); y = zeros(2,n); y(:,1) =...
más de 5 años hace | 1
| aceptada
How to view plotting in real time
Hi Mekala, Alternatevely, you can run the follow code: x = [1,2,3,4,5,6,7,8,9]; y = [1,2,3,4,5,6,7,8,9]; figure; hold on...
más de 5 años hace | 1
| aceptada
Using specific color vector in plot
Hi Kelsey, You need to use the attribute 'color'. See the following example: plot([0 1], [0 1], 'color', [1 0 0])
más de 5 años hace | 0
| aceptada
lambda function with if statement
You can use the following line of code: X = @(om) (1*(abs(om)==1) + 0*(abs(om)~=1));
más de 5 años hace | 2
Compare output with each row and column from a table.
You might create a function to perform this task, an dyou call it as many times you desire. % function return status function...
más de 5 años hace | 0