Community Profile

photo

Yuechuan Chen


Last seen: circa un anno fa Attivo dal 2019

Statistiche

  • Thankful Level 3

Visualizza badge

Content Feed

Visto da

Domanda


Integer check with a symbolic variable
So I have: s=sym('10517669'); p=nextprime(8*(S^4)); if float((p-1)/2)==(p-1)/2 ... end I know float only works for si...

oltre 4 anni fa | 2 risposte | 0

2

risposte

Domanda


Symbolic computation ERROR?
p=sym('5744092954902128823202697'); randi([2,p-2]) So I've defined p and tried to compute randi([2,p-2]), Matlab returns: 'Siz...

oltre 4 anni fa | 1 risposta | 0

1

risposta

Domanda


Powermod involving REALLY large integers
So basically I'm trying to use powermod with very big numbers. I have s=14736874769152501643685660145420817562210437816775431428...

oltre 4 anni fa | 1 risposta | 0

1

risposta

Domanda


Highest power of 2 that divides n.
Never mind I messed up. n=sym('94315998522576010519588224930693232398146802027362761139521'); a=7; i=1;%this is a counter tha...

oltre 4 anni fa | 2 risposte | 0

2

risposte

Risposto
Highest power of 2 that divides n.
n=sym('94315998522576010519588224930693232398146802027362761139521'); a=7; i=1; while mod(n-1,2^i)==0 i=i+1; end i r=...

oltre 4 anni fa | 0

Domanda


Computation's with large numbers.
So, I'm trying to divide n-1( n=94315998522576010519588224930693232398146802027362761139521) by 2^143, I stored n has a symbolic...

oltre 4 anni fa | 1 risposta | 0

1

risposta

Domanda


How to draw a nicer graph
x=-2*pi:pi/100:2*pi; y=sin(3*x); z=cos(3*x); plot(x,y,'k',x,z,'b') plot(x,y,'--',x,z,'-') Hi, I've plotted the graph of c...

oltre 4 anni fa | 1 risposta | 0

1

risposta

Domanda


How to use fzero in a loop to obtain the first 3 positve solutions for cos3x=sin3x?
As it says in the title, I can't figure a way to do it. I've tried for loops but it didn't quite work. Thanks!

oltre 4 anni fa | 2 risposte | 0

2

risposte

Domanda


How to find the first n postive roots of a function?
How to find the first n positive roots of a function using fzero? e.g first 3 postive roots of cos(2x)-sin(x)=0 Thanks!

oltre 4 anni fa | 1 risposta | 0

1

risposta