photo

Pink_panther


2012년부터 활동

Followers: 0   Following: 0

메시지

Engineering

Programming Languages:
MATLAB, HTML
Spoken Languages:
English

통계학

All
  • MATLAB Flipbook Mini Hack Participant
  • MATLAB Mini Hack 2022 Participant
  • Knowledgeable Level 1
  • First Answer
  • Creator
  • CUP Challenge Master
  • 5-Star Galaxy Level 2
  • First Submission
  • MATLAB Mini Hack Participant
  • Treasure Hunt Participant
  • Introduction to MATLAB Master
  • Community Group Solver

배지 보기

Feeds

보기 기준

답변 있음
plotting a polynomial function
%solve1 fplot(@(x)89.9659+0.1110371.*x-0.001472155.*x.^2+1.1E-5.*x.^3-4.381E-8.*x.^4+1E-10.*x.^5)

9개월 전 | 0

답변 있음
1x10 matrix using a single while loop
OP was asking for one liner. Here is the shorter verion, it worked on my PC. n=10;A=[];k=1;while k <=n,A=cat(2,A,k),k=k+1;end

거의 4년 전 | 0

답변 있음
1x10 matrix using a single while loop
n=10;A =zeros(1,n);k=1; while k <=n A(k)=k k=k+1; end

거의 4년 전 | 0

| 수락됨