Community Profile

photo

Yuechuan Chen


Last seen: etwa ein Jahr vor Aktiv seit 2019

Statistiken

  • Thankful Level 3

Abzeichen anzeigen

Content Feed

Anzeigen nach

Frage


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

mehr als 4 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


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

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 4 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
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=...

mehr als 4 Jahre vor | 0

Frage


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

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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!

mehr als 4 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


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!

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort