Erivelton Gualter
Cleveland State University
Followers: 0 Following: 0
Statistics
RANK
1,126
of 295,448
REPUTATION
63
CONTRIBUTIONS
3 Questions
19 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
12
RANK
of 20,227
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
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 years ago | 1 answer | 0
1
answerQuestion
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 years ago | 1 answer | 0
1
answerhow 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 years ago | 0
Solved
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 years ago
Solved
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 years ago
Solved
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 years ago
Solved
Duplicates
Write a function that accepts a cell array of strings and returns another cell array of strings *with only the duplicates* retai...
5 years ago
Solved
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 years ago
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 years ago | 1
Solved
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 years ago
Solved
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 years ago
Solved
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 years ago
Solved
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 years ago
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 years ago | 0
Solved
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 years ago
Solved
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 years ago
Solved
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 years ago
Solved
Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...
5 years ago
Solved
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 years ago
Solved
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
5 years ago
Solved
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 years ago
Solved
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 years ago
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 years ago | 1
| accepted
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 years ago | 1
| accepted
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 years ago | 0
| accepted
lambda function with if statement
You can use the following line of code: X = @(om) (1*(abs(om)==1) + 0*(abs(om)~=1));
5 years ago | 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 years ago | 0