photo

Daniel Catton


Last seen: 2 months ago Active since 2020

Followers: 0   Following: 0

.

Statistics

All
MATLAB Answers

0 Questions
9 Answers

Cody

0 Problems
65 Solutions

RANK
2,527
of 300,364

REPUTATION
24

CONTRIBUTIONS
0 Questions
9 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
2

RANK
 of 20,934

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
8,212
of 168,407

CONTRIBUTIONS
0 Problems
65 Solutions

SCORE
823

NUMBER OF BADGES
3

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • CUP Challenge Master
  • MATLAB Central Treasure Hunt Finisher
  • Treasure Hunt Participant
  • Introduction to MATLAB Master
  • Knowledgeable Level 2
  • Solver
  • First Answer

View badges

Feeds

View by

Answered
Set multiple fields of a struct to a certain value?
You could do a loop but on just the one line? for x=1:4; pressdata(x).refF1 = 1000; end

3 years ago | 1

Answered
IF-statements not executing correctly
Instead of using multiple "if" statements, try having the first as "if" and the others as "elseif", that may solve your problem ...

3 years ago | 1

| accepted

Answered
Extend vector with NaN at specific points
I've been able to come up with this code, it follows my understanding of the problem given your example: RTdataflat = [1 2 3 Na...

5 years ago | 0

| accepted

Answered
How to add multiple values from column together
n = 10 a = rand(n,1); b = sum(a);

5 years ago | 0

Answered
Replace values on a column filtering with a value
I think I understand what you mean, this works for my understanding of your problem but let me know if I have misunderstood. The...

5 years ago | 0

Answered
Running script from App designer, workspace not updated
If you are trying to view these just so you know they are being shows correctly, then you can enter debugging mode (very similar...

5 years ago | 0

| accepted

Answered
"Using MATLAB Write a function that Calculates the overall sum of the elements in each row of a Matrix and also shows on the screen (Not: prints the sum of only the positive numbers from each row)" How can I apply the note to the code?
This is my understanding of the question: A = rand(15,13); %Can set to whatever matrix you wish [row,col] = size(A); %Counts h...

5 years ago | 0

| accepted

Answered
Create a new array by summing the columns of old array
a = YourArray; b = []; for i = 1:2:32 b = [b a(:,i)+a(:,i+1)]; end

5 years ago | 0

Answered
How can I solve this problem in the matlab program ?
I believe your maths is incorrect and that is the first problem. You get your derivitive of u as du = -4x.dx which is correc...

5 years ago | 0

| accepted