Community Profile

photo

Sophie


Last seen: 3년 초과 전 2016년부터 활동

Followers: 0   Following: 0

연락

통계

All
  • 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...

7년 초과 전 | 0

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

7년 초과 전 | 0

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

7년 초과 전 | 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 ...

7년 초과 전 | 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...

7년 초과 전 | 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...

7년 초과 전 | 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...

7년 초과 전 | 0

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

7년 초과 전 | 1

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

7년 초과 전 | 3

| 수락됨

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

7년 초과 전 | 3