Smith - MATLAB Central
photo

Smith


Active since 2016

Followers: 0   Following: 0

Message

Statistics

All
CodyMATLAB AnswersFile ExchangeFrom 09/16 to 04/25Use left and right arrows to move selectionFrom 09/16Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 Questions
6 Answers

File Exchange

1 File

Cody

0 Problems
321 Solutions

RANK
3 202
of 298 292

REPUTATION
18

CONTRIBUTIONS
0 Questions
6 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
6

RANK
15 586 of 20 560

REPUTATION
9

AVERAGE RATING
5.00

CONTRIBUTIONS
1 File

DOWNLOADS
1

ALL TIME DOWNLOADS
49

RANK
633
of 160 775

CONTRIBUTIONS
0 Problems
321 Solutions

SCORE
2 980

NUMBER OF BADGES
5

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • 5-Star Galaxy Level 1
  • First Submission
  • Cody5 Easy Master
  • Commenter
  • Revival Level 1
  • Knowledgeable Level 1
  • First Answer
  • Triathlon Participant
  • Scavenger Finisher
  • Promoter
  • CUP Challenge Master
  • Solver

View badges

Feeds

View by

Answered
DISPLAYOPT must be 'on' or 'off'.
Maybe this will work stats_multcompare = multcompare(stats_KW,'display','off'); Just remove the second input argument, 0...

mer än 8 år ago | 1

| accepted

Answered
I would like to change existing values of parameters
If you just need to get a graph, this will help you function plotgraph y0 = 0:10; % Initial values for n = 1:length(y...

mer än 8 år ago | 1

Answered
Vectors must be the same lengths; plotting
You just need to modify variable _x_ to match the size of variable _simulated_ or variable _actual_. simulated=[0.0000000 ...

mer än 8 år ago | 1

Answered
What do you like about MATLAB?
Using _Vectorization_ instead of loops. <https://www.mathworks.com/help/matlab/matlab_prog/vectorization.html>

mer än 8 år ago | 1

Answered
How to make a function to make a vector with two input points?
To declare a function, you can use the statement like this: function [y1,...,yN] = myfun(x1,...,xM) each input and outpu...

mer än 8 år ago | 1

Answered
How do I sum a function in matlab?
You can define a function using _Anonymous function_ like this f1 = @(x) x; f2 = @(x) x.^2; to get to sum of f1 and f...

mer än 8 år ago | 1