Community Profile

photo

Sophie


Last seen: oltre 3 anni fa Attivo dal 2016

Followers: 0   Following: 0

Contatto

Statistiche

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

Visualizza badge

Feeds

Visto da

Risposto
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...

oltre 7 anni fa | 0

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

oltre 7 anni fa | 0

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

oltre 7 anni fa | 0

Risposto
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 ...

oltre 7 anni fa | 0

Risposto
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...

oltre 7 anni fa | 0

| accettato

Risposto
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...

oltre 7 anni fa | 0

Risposto
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...

oltre 7 anni fa | 0

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

oltre 7 anni fa | 1

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

oltre 7 anni fa | 3

| accettato

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

oltre 7 anni fa | 3