Domanda


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

circa 8 anni fa | 2 risposte | 0

2

risposte

Risolto


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

circa 8 anni fa

Risolto


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

circa 8 anni fa

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

circa 8 anni fa | 0

Domanda


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

circa 8 anni fa | 1 risposta | 0

1

risposta