Community Profile

photo

Smith


Attivo dal 2016

Statistiche

All
  • 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

Visualizza badge

Content Feed

Visto da

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

oltre 7 anni fa | 1

| accettato

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

oltre 7 anni fa | 1

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

oltre 7 anni fa | 1

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

oltre 7 anni fa | 1

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

oltre 7 anni fa | 1

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

oltre 7 anni fa | 1