Community Profile

photo

Erivelton Gualter


Cleveland State University

Last seen: 5개월 전 2018년부터 활동

Followers: 0   Following: 0

연락

통계

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

배지 보기

Feeds

보기 기준

질문


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

거의 4년 전 | 답변 수: 1 | 0

1

답변

질문


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

대략 4년 전 | 답변 수: 1 | 0

1

답변

문제를 풀었습니다


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

4년 초과 전

답변 있음
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-...

거의 5년 전 | 0

문제를 풀었습니다


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

거의 5년 전

문제를 풀었습니다


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

거의 5년 전

문제를 풀었습니다


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

거의 5년 전

문제를 풀었습니다


Duplicates
Write a function that accepts a cell array of strings and returns another cell array of strings *with only the duplicates* retai...

거의 5년 전

문제를 풀었습니다


Counting Sequence
Given a vector x, find the "counting sequence" y. A counting sequence is formed by "counting" the entries in a given sequence...

거의 5년 전

답변 있음
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; ...

거의 5년 전 | 1

문제를 풀었습니다


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

거의 5년 전

문제를 풀었습니다


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

거의 5년 전

문제를 풀었습니다


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

거의 5년 전

문제를 풀었습니다


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

거의 5년 전

문제를 풀었습니다


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

거의 5년 전

답변 있음
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...

거의 5년 전 | 0

문제를 풀었습니다


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

거의 5년 전

문제를 풀었습니다


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

거의 5년 전

문제를 풀었습니다


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

거의 5년 전

문제를 풀었습니다


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

거의 5년 전

문제를 풀었습니다


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

거의 5년 전

문제를 풀었습니다


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

거의 5년 전

문제를 풀었습니다


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

거의 5년 전

문제를 풀었습니다


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

거의 5년 전

문제를 풀었습니다


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

거의 5년 전

답변 있음
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) =...

거의 5년 전 | 1

| 수락됨

답변 있음
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...

거의 5년 전 | 1

| 수락됨

답변 있음
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])

거의 5년 전 | 0

| 수락됨

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

거의 5년 전 | 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...

거의 5년 전 | 0

더 보기