Community Profile

photo

Akansha Saxena


Last seen: 14 days ago Active since 2015

Followers: 0   Following: 0

Message

Statistics

All
  • Introduction to MATLAB Master
  • Community Group Solver
  • First Review
  • Revival Level 1
  • First Answer
  • CUP Challenge Master
  • Commenter
  • Promoter
  • Solver

View badges

Feeds

View by

Answered
Alternative to endsWith function for older Matlab versions
pattern ='on'; results = cellfun(@(x) (length(char(x))>length(pattern)) && strcmpi(pattern,x(length(char(x))-(length(pattern)-1...

3 years ago | 0

Answered
What is the alternative for startsWith function in Matlab 2013?
TF = cellfun(@(x) strncmpi(x, pattern, length(pattern)),names_cell);

3 years ago | 0

Answered
How do you change the alpha value for a sampsizepwr test?
Alpha can be entered as a Name Value pair argument. After entering all the input arguments include 'Alpha' followed by the ...

6 years ago | 0

Answered
REMOVE SPACING IN A STRING
requiredString = regexprep(theString, '\s+', '')

7 years ago | 3