photo

cwshep


Active since 2015

Followers: 0   Following: 0

Message

Statistics

MATLAB Answers

3 Questions
3 Answers

RANK
5,334
of 297,457

REPUTATION
9

CONTRIBUTIONS
3 Questions
3 Answers

ANSWER ACCEPTANCE
33.33%

VOTES RECEIVED
5

RANK
 of 20,438

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 158,938

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 1
  • Knowledgeable Level 1
  • First Answer

View badges

Feeds

View by

Question


Is it possible to call a function that doesn't have precedence?
I am aware of <http://www.mathworks.com/help/matlab/matlab_prog/function-precedence-order.html Matlab's Function Precedence Orde...

9 years ago | 1 answer | 2

1

answer

Question


Is it possible to rename a protected .p function?
Question in the title. More information: I am having compatibility issues with a protected (.p) third party function tha...

9 years ago | 0 answers | 0

0

answers

Answered
Subscripted assignment dimension mismatch.
Your x and f1 arrays are 1x201. Your upper_1 array is 201x2. Presumably you want to do a "x = x.'; f1 = f1.';" before your ass...

9 years ago | 0

Question


How can I force a function handle to use its specified path?
When I create a function handle pointing to a function not on the path, it can't be called if there is another function with the...

9 years ago | 1 answer | 3

1

answer

Answered
setpath not working on 2015a
You shouldn't be modifying pathdef.m directly, as it says: % DO NOT MODIFY THIS FILE. IT IS AN AUTOGENERATED FILE. % ...

9 years ago | 0

Answered
How to delete duplicate words (ie., two words combine) in cell arrays?
Probably not the fastest way... function C = dedupeCell(C) s = repmat(true,length(C),1); for i = ...

9 years ago | 0

| accepted