Community Profile

photo

Erivelton Gualter


Cleveland State University

Last seen: 4 meses hace Con actividad desde 2018

Estadísticas

All
  • Thankful Level 2
  • Solver
  • Knowledgeable Level 2
  • Thankful Level 1
  • Revival Level 1
  • First Answer

Ver insignias

Content Feed

Ver por

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

casi 4 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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(... ...

casi 4 años hace | 1 respuesta | 0

1

respuesta

Resuelto


Linear system of equations
Solve the system of equations in three variables.

más de 4 años hace

Respondida
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-...

casi 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...

casi 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...

casi 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...

casi 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...

casi 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...

casi 5 años hace

Respondida
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; ...

casi 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...

casi 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 ...

casi 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. ...

casi 5 años hace

Resuelto


The sum of the numbers in the vector
eg. [1,2,3]---->SUM=6

casi 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...

casi 5 años hace

Respondida
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...

casi 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 ...

casi 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...

casi 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]; ...

casi 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...

casi 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...

casi 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.

casi 5 años hace

Resuelto


Add two numbers
Given a and b, return the sum a+b in c.

casi 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:...

casi 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...

casi 5 años hace

Respondida
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) =...

casi 5 años hace | 1

| aceptada

Respondida
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...

casi 5 años hace | 1

| aceptada

Respondida
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])

casi 5 años hace | 0

| aceptada

Respondida
lambda function with if statement
You can use the following line of code: X = @(om) (1*(abs(om)==1) + 0*(abs(om)~=1));

casi 5 años hace | 2

Respondida
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...

casi 5 años hace | 0

Cargar más