photo

loukas


Last seen: 거의 4년 전 2022년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

6 질문
0 답변

순위
267,628
of 301,464

평판
0

참여
6 질문
0 답변

답변 채택
100.0%

획득한 표
0

순위
 of 21,292

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 174,642

참여
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...

거의 4년 전 | 답변 수: 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...

거의 4년 전 | 답변 수: 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...

거의 4년 전 | 답변 수: 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*...

거의 4년 전 | 답변 수: 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 ...

거의 4년 전 | 답변 수: 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); ...

거의 4년 전 | 답변 수: 1 | 0

1

답변