Pregunta


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

más de 8 años hace | 1 respuesta | 1

1

respuesta

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

más de 8 años hace | 2

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

más de 8 años hace | 0

| aceptada

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

más de 8 años hace | 1

| aceptada

Respondida
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

más de 8 años hace | 0

| aceptada

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

más de 8 años hace | 2

| aceptada

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

más de 8 años hace | 0

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

más de 8 años hace | 0

| aceptada

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

más de 8 años hace | 1

| aceptada

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

más de 8 años hace | 0

| aceptada

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

más de 8 años hace | 0

Pregunta


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

más de 8 años hace | 2 respuestas | 1

2

respuestas

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

más de 8 años hace | 0

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

más de 8 años hace | 1

| aceptada

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

más de 8 años hace | 1

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

más de 8 años hace | 3

| aceptada

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

más de 8 años hace | 0

| aceptada

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

más de 8 años hace | 0

| aceptada

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

más de 8 años hace | 1

| aceptada

Respondida
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

más de 8 años hace | 0

| aceptada

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

más de 8 años hace | 0

| aceptada

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

casi 9 años hace | 1

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

casi 9 años hace | 0

| aceptada

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

casi 9 años hace | 0

| aceptada

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

casi 9 años hace | 0

| aceptada

Respondida
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 ), ...

casi 9 años hace | 0

| aceptada

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

casi 9 años hace | 0

| aceptada

Respondida
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' ) >...

casi 9 años hace | 1

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

casi 9 años hace | 1

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

casi 9 años hace | 2

Cargar más