photo

loukas


Last seen: 3年以上 前 2022 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

6 質問
0 回答

ランク
266,984
of 300,853

評判
0

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

回答採用率
100.0%

獲得投票数
0

ランク
 of 21,094

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 171,319

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

スコア
0

バッジ数
0

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

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

平均評価

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

平均いいねの数

  • Thankful Level 3

バッジを表示

Feeds

表示方法

質問


Get n numbers from a list
I know there is a function nchoosek, however is there any way to do this without using this particular command since we aren't a...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


Given a list of numbers, how do you take specific numbers at time?
I want to create a function file that extracts n number/s at a time from a given list of numbers. For example the given list i...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


How to get the sum of the rows of a matrix?
I am very new to Matlab and I just want make a function file that inputs a 3x3 matrix and gets the sum of each rows. I don't kno...

3年以上 前 | 2 件の回答 | 0

2

回答

質問


How to show the roots of a polynomial in complex numbers?
function root(a, b, c) if nargin==1,c=a(3);b=a(2);a=a(1);end x1 = (-b+sqrt(b.^2-4*a*c))/(2*a); x2 = (-b-sqrt(b.^2-4*a*c))/(2*...

3年以上 前 | 2 件の回答 | 0

2

回答

質問


How to make a function file that displays a polynomial and accepts a specific command?
function lou(a,b,c) fprintf('%dx^2 + %dx + %d =0 \n',a,b,c) end this is my code right now. how do i modify my code to make ...

3年以上 前 | 2 件の回答 | 0

2

回答

質問


How to plot the functions x=cos(t) and y=sin(t) in a single graph?
I tried to do plot them but I wasn't confident since one of the functions is with respect to the x axis. t=linspace(0,2*pi); ...

3年以上 前 | 1 件の回答 | 0

1

回答