photo

Smith


2016 年からアクティブ

Followers: 0   Following: 0

統計

All
MATLAB Answers

0 質問
6 回答

File Exchange

1 ファイル

Cody

0 問題
321 解答

ランク
3,230
of 300,331

評判
18

コントリビューション
0 質問
6 回答

回答採用率
0.00%

獲得投票数
6

ランク
15,715 of 20,920

評判
10

平均評価
5.00

コントリビューション
1 ファイル

ダウンロード
1

ALL TIME ダウンロード
50

ランク
656
of 168,124

コントリビューション
0 問題
321 解答

スコア
2,980

バッジ数
5

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • 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

バッジを表示

Feeds

表示方法

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

9年弱 前 | 1

| 採用済み

回答済み
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...

9年弱 前 | 1

回答済み
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 ...

9年弱 前 | 1

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

9年弱 前 | 1

回答済み
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...

9年弱 前 | 1

回答済み
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...

9年弱 前 | 1