Тёмный

HP 35s Basic Programming 

Logan West
Подписаться 3 тыс.
Просмотров 40 тыс.
50% 1

A brief description of how to enter a program on the HP 35s. There are much, much more advanced things that can be done but I would recommend looking at other programs or reading the manual to get a more in depth explanation. This should show off how simple and intuitive the programming is, and how it greatly expands the functionality of the calculator (the only programmable one allowed on the FE or PE exams).

Опубликовано:

 

11 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 22   
@drdjwalker4688
@drdjwalker4688 3 года назад
Your tutorials on this calculator are excellent. Among all the on-line crap, this is the sort of thing that makes in the internet worth-while. Thank you.
@west
@west 3 года назад
You’re welcome, thank you for saying so!
@drdjwalker4688
@drdjwalker4688 3 года назад
@@west Really pleased to give credit where it's due. Decades after I should, I just bought one of these. Your tutorials really complement the manual! All the best. Dan.
@IExSet
@IExSet 2 года назад
Besides some problems/errors HP 35s is very interesting and handsome device (not screen, but keyboard has most beautiful look among all HP models) ! I also suggest to make WP 35s from HP 30b, it has additional programming capabilities comparable to HP 42s. Or Swissmicros DM 42L.
@ron6625
@ron6625 6 лет назад
awesome video. Any tips on how to do a voltage divider using the numbers that are found in the x and y stack? EG: (XY/X+Y) Or would i have to store them in a letter?
@west
@west 6 лет назад
That should be pretty straight-forward, you're just going to have to write a program and store the x and y variables. Something like this: LBL V STO A XY STO B x RCL A RCL B + / END So it would store the x-stack into the variable A, then swap x and y and store the (old) y-stack into the variable B. Multiply them together for your numerator, recall them both and add them for the denominator, then divide. To execute it just XEQ V (or whatever label you picked) and it will do the voltage divider on the values sitting in the x and y stack.
@danielj8631
@danielj8631 5 лет назад
LBL V 1/x xy 1/x + 1/x END
@PineappleOranges
@PineappleOranges 4 года назад
I got curious how to program this using just stack information and without using STO. I'm a newbie at this, so there may be a better way to perform this. LBL V REGY REGY + (add) Roll Down x (multiply) Roll Up / (divide) It seems recalling from stack also raises the stack up. At the beginning, double REGY just copies X and Y stack because they are used in the equation twice. To access the registers for programing, or just looking at them, on the HP35s: Left Shift(Yellow) and open a menu(Flags, Display, Const, Mem), press Roll Down, look at stack registers, press enter on one to select For any DM42(and presumably HP42), to STO and RCL stack registers: press STO/RCL and press . (decimal button)
@tacticalwolf17
@tacticalwolf17 4 года назад
how would you do that exact calculation with that calculator but without the program. how do you type it in as if you were using a normal calculator that had square root and square?
@west
@west 4 года назад
In RPN mode it would be the exact same sequence of keystrokes. Key in your first number. Hit x^2. Key in your second number. Hit x^2. Hit +. Hit the square root symbol.
@lukejohnson835
@lukejohnson835 4 года назад
Is that the last line of StefanV's Matrix Multi-Tool (0:25)?
@west
@west 4 года назад
That's correct! It took a long time to enter...
@trevorrobinson9977
@trevorrobinson9977 2 года назад
I keep getting invalid data on all my programs when it asks me to enter in point number. Can someone help me here?
@west
@west 2 года назад
Are you in decimal mode or could you be in say octal or hexadecimal mode, in which decimal numbers are invalid?
@j0929
@j0929 3 года назад
I'm having trouble putting in a program that was given to me and step I010 asks for y,x→∅,r and I don't know how to enter it
@west
@west 3 года назад
Is it a 35s program or for another HP calculator? The 35s doesn't have a direct function to convert from rectangular to polar so you might have to run it through another function. Converting from rectangular to polar isn't hard, but it's a few extra steps.
@j0929
@j0929 3 года назад
Yeah I just found out it's for a hp33 not the 35.
@j0929
@j0929 3 года назад
It's three programs. One for stacking, traverse and inverse.
@Scalvenger
@Scalvenger 6 лет назад
Is there any way to enter in a program label that is more than 1 character long?
@klonksfield
@klonksfield 6 лет назад
Scalvenger no. only a to z.
@Centar1964
@Centar1964 6 лет назад
27 if you don't label the 1st program in memory...
@8bits59
@8bits59 4 года назад
No, but you can use GTO to run programs that have no label or are in between labeled programs.