Community Profile

photo

Jon Wieser


Last seen: circa 4 anni fa Attivo dal 2018

Followers: 0   Following: 0

Statistiche

All
  • Knowledgeable Level 2
  • First Review
  • Community Group Solver
  • First Answer
  • CUP Challenge Master
  • Promoter
  • Solver

Visualizza badge

Feeds

Visto da

Risposto
Create an RGB Image using a loop by choosing a random color for each pixel
x = 1:10; y= 1:10; image=zeros(10,10,3); m = randi(3,10,10); % creates a vetor that of random numbers from 1:3 that deterim...

oltre 4 anni fa | 0

| accettato

Risposto
solving three equations for 3 unknows
try: D=solve('(2*c*w1)+b2 = 0.3205','((2*c*b2)+ w1)*w1 = 214200','(b2*w1)=1.2260e+05;','c','w1','b2')

quasi 5 anni fa | 0

Risposto
translate equation to matlab code
s2_hat= n1/n2*(N_hat*(-N_hat*s1_hat))-N_hat*sqrt(1-(n1/n2)^2*(N_hat*s1_hat)*(N_hat*s1_hat))

quasi 5 anni fa | 1

| accettato

Risposto
Function Return only one value
when you call the function, you need to specify two outputs, for example: [X,Y] =MyEKFFun(31,24,18,330,364,379,1,1.1,1.3,2)

quasi 5 anni fa | 2

Risposto
I want to insert a groups of ones in between zeros. I want to display all the possibilities.
here's a start unique(perms([zeros(1,8),111,111]),'rows');

circa 5 anni fa | 0

Risposto
3D sinus imaginary part
This will get you started [x,y]=meshgrid(-1:.1:1,-6:.1:6); z=x.*sin(y); surf(x,y,z)

circa 5 anni fa | 0

| accettato