Question


When was 'tokenize' dropped from regexprep?
With R2016a I get this warning >> regexprep( 'abc123def', '(\d{3})', '.$1.', 'tokenize' ) Warning: The 'tokenize' op...

8 years ago | 1 answer | 1

1

answer

Answered
Find cell containing part of a string
>> find( ismember( colorList, strsplit( stringToCheck ) ) ) ans = 3 or >> find( ismember( colorList, s...

8 years ago | 2

Answered
How to store values as array
There are a couple of mistakes in your code. Try this k = nan( 1, nn ); % pre-alloctate memory for ii = 1 : nn ...

8 years ago | 0

| accepted

Answered
changing minutes after midnight into a datetime array
_"but I only need the MI"_   I don't think you can avoid the date and time. X = 60*[1,2,3,4,5,6,7]; T = datetime( X...

8 years ago | 1

| accepted

Answered
How to obtain a set of matrix from another matrix by adding the previous row value along the column to the next row on the same column
Is this what you want? >> cumsum( a, 1 ) ans = 2 4 5 8 7 9

8 years ago | 0

| accepted

Answered
Create an array of strings
>> fruit = {'apple', 'cherry'} fruit = 'apple' 'cherry' with curly braces creates a cell array of strings. I ...

8 years ago | 2

| accepted

Answered
Can't create hdf5 file using batch scripts.
The function, *|strcat|*, has no effect in the statement file_name = strcat('/home/usr/test_results1'); which is equival...

8 years ago | 0

Answered
Testing private functions in classes
First goggle "test private method" and read about why you should *not do it* (and a few ways to do it). One way (for handle ...

8 years ago | 0

| accepted

Answered
finding string in between
*|yourNumber|* is overwritten in the loop and only the last value is saved. The first step to fix your code is yourNumber ...

8 years ago | 1

| accepted

Answered
Assignment has more non-singleton rhs dimensions than non-singleton subscripts
The RHS is a scalar K>> A( l, m, kindex, j, n+1 ) ans = 0 K>> the LHS is a 3x3 matrix K>> whos z ...

8 years ago | 0

| accepted

Answered
what is the word need to fill in this blank
>> x = 1:4; >> y = 2*x.^2 y = 2 8 18 32 But wouldn't it had been better to find this in the do...

8 years ago | 0

Question


Wanted: Examples on how to use "Dynamic Regular Expressions" to debug regular expressions
I try to develop a function, *|is_string_constant|*, which takes a text string of Matlab code and returns a logical vector, whic...

8 years ago | 2 answers | 1

2

answers

Answered
How to access second axes in the PLOTYY syntax?
plotyy returns a vector of two axis-handles. (The diagram (before HG2 and I guess in HG2) was two plots on top of each other.) ...

8 years ago | 0

Answered
Any approach faster to concatenate multi dimension cell?
Try >> S = load('completedata.mat'); >> S.data_lap_th ans = [1x1 struct] [1x1 struct] [1x1 struct] [...

8 years ago | 1

| accepted

Answered
searching a string for a word
Try >> regexpi( 'And, and other words and_ 2and and', '(^|\W)and(\W|$)', 'start' ) ans = 1 5 31 The se...

8 years ago | 1

Answered
Function for day of the year
Introduced in R2014b >> day( datetime('07-Jan-2017', 'InputFormat', 'dd-MMM-yyyy' ), 'dayofyear' ) ans = 7 _"...

8 years ago | 3

| accepted

Answered
How to modify vectors in a for loop?
Replace for i=[1,23] by for i=1:23 and look up <https://uk.mathworks.com/help/matlab/ref/for.html *|for|*> in th...

8 years ago | 0

| accepted

Answered
How to convert decimal to time?
*|datestr|* takes days as input. Thus, divide by 24. >> val = 7.6; >> datestr( val/24, 'HH:MM' ) ans = 07:36 I ...

8 years ago | 0

| accepted

Answered
putting several matrices as one
The matrices must have the same number of rows and have values of the same class. len = 7; A1 = ones( len, 2 ); A2 ...

8 years ago | 1

| accepted

Answered
I need help fixing one problem with this functtion.
Try to put if numRemoved == 0 num = 0; newstr = str; end at the end of your function

8 years ago | 0

| accepted

Answered
Cell array filtering date and time using datenum
Replace *|X{:}|* by *|char(X)|* >> X = {'30/12/2015 15:54:30';'30/12/2015 15:54:30';'30/12/2015 15:54:30'}; >> num...

8 years ago | 0

| accepted

Answered
I have extracted 'time' from excel sheet but got in different format.
You are right, it's confusing and it's because Excel stores its serial date number internally and shows it on a format chosen by...

8 years ago | 1

Answered
Create a multidimensional matrix from very large set data?
My steps * Put your code inside a loop * Converted to function, because I like functions better. Easier to debug. Doesn't li...

8 years ago | 0

| accepted

Answered
How to remove a dimension from multiple arrays and store it in different cell arrays or consecutive distinct arrays
The major problem with your code is that &nbsp; *|Mod.Var3D.P.AllNivel.Dia{p}|* &nbsp; is overwritten for every new value of the...

8 years ago | 0

| accepted

Answered
Read multiple txt files and remove 2nd line with all dashes and output back to files to append _output in the filenames
I run your code successfully after having replaced fidOut=fopen(SBFsample(i).name,'output.txt','w'); by fidOut=...

8 years ago | 0

| accepted

Answered
Decimal number between 0 and 1 without the integer part?
This code strips off leading zeros; replaces leading zeros with an empty string. >> str = regexprep( num2str( 0.25, 2 ), ...

8 years ago | 0

| accepted

Answered
uigetfile and large dialogue box
The dialogue box "remembers" its size (and position) from when it was last closed. Try this: # open the dialogue # right ...

8 years ago | 0

| accepted

Answered
How can I produce Matlab Figure with lower memory size?
I made a little test >> plot( randn(1,100) ) >> savefig(gcf,'c:\tmp\savefig') >> print( 'c:\tmp\dsvg', '-dsvg' ) >...

8 years ago | 1

Answered
Too many output arguments problem
Replace function myrand a = 1+rand(3,4)*9 end by function a = myrand a = 1+rand(3,4)*9; end ...

8 years ago | 1

Answered
Is it possible to temporarily disable the private attribute of object properties in debug mode in MATLAB 7.9 (R2009b)?
The answer by the Team does not include the current values of the private properties. I modified their class to display the curr...

8 years ago | 2

Load more