Community Profile

photo

Sophie


Last seen: 3 years ago Active since 2016

Followers: 0   Following: 0

Message

Statistics

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

View badges

Feeds

View by

Answered
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 years ago | 0

Answered
Warnings do not turn off
try warning('off','all')

7 years ago | 0

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

7 years ago | 0

Answered
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 years ago | 0

Answered
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 years ago | 0

| accepted

Answered
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 years ago | 0

Answered
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 years ago | 0

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

7 years ago | 1

Answered
How to zoom text at m file?
preferences - fonts

7 years ago | 3

| accepted

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

7 years ago | 3