Question


Replace repeated symbol by regexprep
Hello, dear Matlab experts, I'd like to change i.e. string '1,31,' to '1,31' by using regexprep. So I need to replace second, t...

8 years ago | 2 answers | 0

2

answers

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

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

8 years ago

Answered
How to speed up my code and improve/avoid for loop
This code is 10 times faster (thanks to Walter Roberson) T=rand(100000,1)-0.3; eTG=zeros(size(T)); %set eTG(1)=0 and pre...

8 years ago | 0

Question


How to speed up my code and improve/avoid for loop
Dear all, that's my piece of code that works correctly but too slow. T=rand(100000,1)-0.3; eTG=zeros(size(T)); %set...

8 years ago | 1 answer | 0

1

answer