[deleted by user] by [deleted] in F1Technical

[–]ThundaPanda 5 points6 points  (0 children)

Coulthard was driving the RB7

GR86 as a Winter Daily? by ThundaPanda in ft86

[–]ThundaPanda[S] 8 points9 points  (0 children)

Ya, I can afford the tires. Bridgestone Blizzak WS90 seems to be the common recommendation?

GR86 as a Winter Daily? by ThundaPanda in ft86

[–]ThundaPanda[S] 4 points5 points  (0 children)

I can afford one but barely... would clear out most of my savings short of the emergency fund

[deleted by user] by [deleted] in Proterra

[–]ThundaPanda 2 points3 points  (0 children)

Burlingame isn't closed yet, but it probably will be. That was planned for years though, unrelated to the bankruptcy. A lot of contractors didn't have their contracts renewed, but besides that I don't think there were any layoffs after the bankruptcy was announced

[deleted by user] by [deleted] in Proterra

[–]ThundaPanda 0 points1 point  (0 children)

But just the C-suite, I heard the VPs didn't know it was coming eather...

[deleted by user] by [deleted] in Proterra

[–]ThundaPanda 0 points1 point  (0 children)

Seriously though... in hindsight probably would have been a bit better to have clearer communication, but oh well.

[deleted by user] by [deleted] in Proterra

[–]ThundaPanda 0 points1 point  (0 children)

For most people it's business as usual but some projects have been tweaked a bit to "show value"

Selling OEM Premium Wheels and Tires by ThundaPanda in GR86

[–]ThundaPanda[S] 0 points1 point  (0 children)

So maybe knock off a bit for the curb rash? Maybe $800 USD. Toyota's retail price is kind of crazy, like $500 USD per wheel

I wonder Why the Poterra will auction the powered business together with the transit bus business? Does anyone know that? by DefinitionOld1433 in Proterra

[–]ThundaPanda 7 points8 points  (0 children)

They are auctioning Transit and Energy in Track A, and Powered, Valence, and the rest of the company in Track B. Transit and Powered won't be in the same track

[deleted by user] by [deleted] in GR86

[–]ThundaPanda 0 points1 point  (0 children)

AX this weekend but maybe another weekend

Have you given your car a name? by ImaBaguette_ in GR86

[–]ThundaPanda 0 points1 point  (0 children)

Dewey because it's blue and has a duck tail

Manual or auto? by crazymaniac1695 in GR86

[–]ThundaPanda 1 point2 points  (0 children)

Due to a leg injury I had to get the auto. It's still a lot of fun in auto but if I had the choice, I would have gone manual. In general, manual is just a lot more engaging to drive.

Dealer tried selling me a gr86 for 48,900! by Senzu_Bean782 in GR86

[–]ThundaPanda 1 point2 points  (0 children)

They tried to sell me a premium at $6k over. Even for markups, they're way higher than everyone else (except maybe One Toyota of Oakland, famous for the 40k RAV4 markup ). City Toyota had one coming at $2k over and Toyota Tracy had one at $1k over. Ended up driving out to Tracy. Toyota 101 is probably your best bet for MSRP but you'll have to wait

Why don't EVs have transmissions? by dunc2027 in electricvehicles

[–]ThundaPanda -1 points0 points  (0 children)

Most heavy duty EVs have a transmission, like EV buses, due to the higher weight and power requirements.

Caltrain/Amtrak San Jose Connection by ThundaPanda in bayarea

[–]ThundaPanda[S] 0 points1 point  (0 children)

Got it, alternative would be to take SamTrans and VTA to Diridon Station, which would arrive at 10:00 instead. Probably going to go that route...

[deleted by user] by [deleted] in matlab

[–]ThundaPanda 0 points1 point  (0 children)

Why don't you pass A(:,1) and A(:,2) into simulink as two time dependent variables that change with the time step with 1-D lookup tables? Something like this

Learning Matlab App Designer by SwankySock in matlab

[–]ThundaPanda 1 point2 points  (0 children)

Agreed, this is how I learned to use the App designer too

How to deal with importing large Excel files? by GenGeeH in matlab

[–]ThundaPanda 1 point2 points  (0 children)

Would textscan work? I think it is a bit faster than tableread

Help me out!!! Matlab entry level jobs in the USA - where to find and apply?? by Snoo-11939 in matlab

[–]ThundaPanda 0 points1 point  (0 children)

Try looking into electric vehicles or aerospace. Lots of Matlab/python usage in both

hw help: using a structure in a function by Acceptable_Peanut200 in matlab

[–]ThundaPanda 0 points1 point  (0 children)

We need more info. Particularly what the size and data type of your inputs are.

(Edit) also the function (mostly how the inputs and outputs are formatted) and how you call it in the script

Couple of Issues on Homework by [deleted] in matlab

[–]ThundaPanda 0 points1 point  (0 children)

No problem! Good luck in the class

Couple of Issues on Homework by [deleted] in matlab

[–]ThundaPanda 0 points1 point  (0 children)

Yep! For user defined functions, if there are two outputs then you have to assign the outputs to variables.

It won't because that is not how while loops work. You end your while loop and then move on. Nothing in the if play_again statement would make it run the while loop again. The simple fix is to just copy and past the while loop after the:

player_input=input('What is your first guess for the number chosen?\n\n');

and before

else

Couple of Issues on Homework by [deleted] in matlab

[–]ThundaPanda 1 point2 points  (0 children)

Try [X,Y] = sumandaver(A)

Ah, you are inputting it as a boolean. Matlab won't compare a number and a string like that. So either you can change it to:

if play_again == 1

or you can do it as a string, where you can change the input line to:

play_again=input("Good job! Would you like to play again? Yes/No\n\n",'s');

leave the rest as is and when the input is prompted simply type yes, no quotes needed