photo

Sophie


Last seen: 대략 5년 전 2016년부터 활동

Followers: 0   Following: 0

메시지

통계

All
MATLAB Answers

0 질문
10 답변

Cody

0 문제
356 답안

순위
2,777
of 300,381

평판
22

참여
0 질문
10 답변

답변 채택
0.00%

획득한 표
7

순위
9,614 of 20,941

평판
41

평균 평점
5.00

참여
0 파일

다운로드 수
5

ALL TIME 다운로드 수
166

순위
683
of 168,477

참여
0 문제
356 답안

점수
2,910

배지 수
5

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • 5-Star Galaxy Level 3
  • First Submission
  • Knowledgeable Level 1
  • First Answer
  • Triathlon Participant
  • Leader
  • CUP Challenge Master
  • Commenter
  • Promoter
  • Solver

배지 보기

Feeds

보기 기준

답변 있음
how can I convert the output of solve function into matrix form?
Maybe better option is to use _linsolve_ if the system of equations is linear. So that U'll obtain result as matrix. Also you c...

대략 9년 전 | 0

답변 있음
Warnings do not turn off
try warning('off','all')

대략 9년 전 | 0

답변 있음
Cumulative sum of cell array column
Try this res=sum(cellfun(@double,A(:,7))) or res=cumsum(cellfun(@double,A(:,7)))

대략 9년 전 | 0

답변 있음
Displaying the answer of Newton's method for multiple roots?
Obtained solution: Main code m=1; fprintf(' k xk fx dfx \n'); roots=[-0.0505 1.3232 ...

대략 9년 전 | 0

답변 있음
Displaying the answer of Newton's method for multiple roots?
for k=1:50 fx=sin(x^(2))+x^(2)-2*x-0.09; dfx=(2*(x*cos(x^2)+x-1)); fprintf('%3d %12.8f %1...

대략 9년 전 | 0

| 수락됨

답변 있음
how do I find the minimum of an implicit equation with symbolic variable
I guess you have to use symbolic variables here instead of A(i),B(i),C(i). And only in the end substitute elements in result us...

대략 9년 전 | 0

답변 있음
How to solve this 3rd order PDE?
Firstly u have to rewrite your equation. Than use pdepe. check out this. https://www.mathworks.com/help/matlab/math/partial-di...

대략 9년 전 | 0

답변 있음
How do I format the screen output?
https://www.mathworks.com/help/matlab/matlab_env/format-output.html

대략 9년 전 | 1

답변 있음
How to zoom text at m file?
preferences - fonts

대략 9년 전 | 3

| 수락됨

답변 있음
how to save à new file
try ctrl+s. or u want to create new file in the script and save it?

대략 9년 전 | 3