How to put this in matlab by user which the dimensions of the table changes
1 回表示 (過去 30 日間)
古いコメントを表示
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/649645/image.jpeg)
0 件のコメント
採用された回答
Walter Roberson
2021 年 6 月 11 日
N = 5;
syms i x_i w_i y_i L w
yi = sym('y_i', [1 N-1]);
yi = [0, yi, 0];
P = (0:N)/N;
M = [i, 0:N; x_i, L*P; w_i, w*P; y_i, yi]
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!