質問


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年 前 | 2 件の回答 | 0

2

回答

解決済み


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年以上 前

解決済み


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年以上 前

回答済み
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年以上 前 | 0

質問


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年以上 前 | 1 件の回答 | 0

1

回答