Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - lomalena

Pages: [1]
1
QB64 Discussion / Building Design
« on: June 20, 2020, 06:02:00 pm »
Hello,

I am trying to use qb64 program with architecture.
Can you show how I can model building with a simple example?

I thought it might be an easy example, so I chose the sears tower.

How can I start? Thank you.

2
QB64 Discussion / Math Question With Autocad Drawing Included
« on: April 11, 2020, 09:11:42 am »
So, I have R = 3 - Cos (t)  equation.
I want this equation use as a base of a conic
How can I write this?


3
QB64 Discussion / Mathematical Problems
« on: February 29, 2020, 08:05:09 am »
Hello, I'm new in qb64 and we are using this in our master's degree classes. Since I'm an architect and programming is very hard for me to understand.

I have a question that I cannot figure it out.

For example, I have a function lets say f(x)=sin(x)+5
I want to divide that function into random 4 pieces and I want to find the coordinates of the points which cut the function.

I started like this but I don't know how to solve it.

Can someone plz help? Thank you.

OPTION _EXPLICIT
DIM m AS INTEGER
INPUT "how many pieces should we divide", m
DIM n AS INTEGER

FUNCTION fx (x AS DOUBLE)
    fx = SIN(x) + 5
FOR

NEXT

END FUNCTION
well I have no idea that what I am doing.

Pages: [1]