Search need-to-do-in-matlab-deadline-hours-after-i-accept-your-proposal

Need to do in matlab deadline hours after i accept your proposal

 
 

Top Questions

2.Write a Slicer One of the key steps in processing an STL file for printing is slicing. STL files were written ...

s were written to make slicing a low memory task by storing each triangle at a single place. We already have code to do the following: A Generator that returns a triangle one at a time from an STL file (specifically an ASCII STL file). It Return the triangle as a list of 3D points (tuples), ignoring the normal. (from HW4) A function that takes a list of line segments, each line segment is a list of 2D points (tuples) and returns a single list of 2D points where the start of one segment is the end of another. ( from HW 3) A function that converts a list of 2D points to G-Code (lab 2) A function that writes GCode to a file To make a slicer you need to: Write a function that calculates the intersection of a triangle with a horizontal plane. The input of the function should be a list of 3D points (tuples). It should return a list of 3D points. See this website for hints on the mathematics http://geomalgorithms.com/a06-_intersect-2.html#Triangle-Plane (Links to an external site.) ( https://web.archive.org/web/20180706054857/http://geomalgorithms.com/a06-_intersect-2.html (Links to an external site.) ) Next you need to combine all of these different functions into a single workflow that takes in an STL file, a slicing height, print temperatures, movement speed , and extrusion speed and returns a G-code String which prints the walls of the STL file. It should have an outer iteration over slice heights of the STL, for each slice height, it should scan all triangles and make a list of the line segments that intersect the plane at that Z height. Then it should order those segments into a list of points. That list of points is then converted into gcode movement and extrusion commands. The entire system combines these slices with setup and shutdown Gcode for the ender 3 printer to make the print job. You may write to a file a layer at a time or at the end. Once the slicer is done: Run the previous function with a vase file such as one of the following files: https://www.thingiverse.com/thing:126567/files https://www.thingiverse.com/thing:42570/files https://www.thingiverse.com/thing:31722/files https://www.thingiverse.com/thing:2795194/files Submit your code as a Jupiter notebook with the .gcode in it and, and an image of your print.
View More

4.CSE 1300 Problem Solving Practice Conditional Statements Question 1: Student Fees All KSU students pay fees in addition to their tuition. Using the code ...

nts pay fees in addition to their tuition. Using the code provided below as a starting point, write a conditional statement that determines how much a student will pay in fees. • Students registered for 1 – 4 hours pay $843 in student fees. • Students enrolled in 5 or more hours pay $993 in student fees. The program should also display a message to students who have not enrolled in any classes: “You are not enrolled in any classes right now.” NOTE: You must use the variables included in the code snippet get credit for this question. import java.util.Scanner; class Main { public static void main(String[] args) { int creditHours; int fees = 0; Scanner myScanner = new Scanner(System.in); System.out.print("Please enter the number of credit hours you are taking this term: "); creditHours = myScanner.nextInt(); myScanner.close(); //YOUR CODE GOES HERE } } Break the Problem Down Answer the following questions, then use the information to write your code. What are the inputs in the pseudocode above? (INPUT) What are we storing in the pseudocode above? (MEMORY) What calculations are needed? (PROCESSES) What needs to be displayed to the user? (OUTPUT) How many conditions are there in your problem statement? What are they? Does something need to happen if the condition(s) are not met? What type of conditional statement do you need? Solution in Java Problem 2: Block Tuition The cost of KSU’s tuition is determined by the number of credit hours a student enrolls in. Using the chart below, write a conditional statement (ONLY) that sets the value of a tuition variable to what that student will owe. NOTE: For this problem you can assume that all students are enrolled in a minimum of 12 hours. Number of Credit Hours 12 13 14 15 or more Cost (in USD) $2224 $2410 $2595 $2718 Break the Problem Down Answer the following questions, then use the information to write your code. What do we need to store? (MEMORY) What are the inputs in the problem statement above? (INPUT) What calculations are needed? (PROCESSES) What needs to be displayed to the user? (OUTPUT) How many conditions are there in your problem statement? What are they? Does something need to happen if the condition(s) are not met? What type of conditional statement do you need? Solution in Java Problem 3: Class Standing Undergraduate students will be classified based on the number of earned institutional hours. • Freshman: • Sophomore: • Junior: • Senior: 0 - 29 hours 30 - 59 hours 60 - 89 hours 90 hours or more Write a complete program that prompts the user for the number of credit hours they have completed. Write a conditional statement that prints out their class standing based on the information they provided. Sample Output Break the Problem Down Answer the following questions, then use the information to write your code. What do we need to store? (MEMORY) Please enter the number of credit hours you have earned: 29 You are a freshman. What are the inputs in the problem statement above? (INPUT) What calculations are needed? (PROCESSES) What needs to be displayed to the user? (OUTPUT) How many conditions are there in your problem statement? What are they? Does something need to happen if the condition(s) are not met? What type of conditional statement do you need? Solution in Java Problem 4: Maximum Course Load KSU’s policy on maximum course loads during the academic year is as follows: A student in good standing may register for up to 18 hours. The Registrar may approve up to 21 hours for students with an institutional GPA of 3.5 or higher. Students Write a complete program that prompts the user for the number of credit hours they have signed up for. Write the necessary conditional statement(s) to address the stipulations in KSU’s policy. Once the maximum number of hours is determined, display a message to the user that states “You may enroll in X credit hours this semester.” where X is the number of credit hours determined by your program. Sample Output Break the Problem Down Answer the following questions, then use the information to write your code. What do we need to store? (MEMORY) Please enter your GPA: 3.75 You may enroll in up to 21 credit hours this semester. What are the inputs in the problem statement above? (INPUT) What calculations are needed? (PROCESSES) What needs to be displayed to the user? (OUTPUT) How many conditions are there in your problem statement? What are they? Does something need to happen if the condition(s) are not met? What type of conditional statement do you need? Solution in Java Problem 5: First-Year Seminar All first-year full-time students entering Kennesaw State University with fewer than 15 semester hours are required to complete a First-Year Seminar. Students with 30 or more credit hours are not eligible to enroll in a First-Year Seminar. Write a complete program that prompts the user for the number of credit hours they have completed. Write the necessary conditional statement(s) to address the stipulations in KSU’s policy. When you run your program, it should display one of the following messages to the screen: • You must enroll in First-Year Seminar. • You do not have to take First-Year Seminar. • You are not eligible for First-Year Seminar. Sample Output Break the Problem Down Answer the following questions, then use the information to write your code. What do we need to store? (MEMORY) Enter the number of credit hours have you completed: 30 You are not eligible for First-Year Seminar. What are the inputs in the problem statement above? (INPUT) What calculations are needed? (PROCESSES) What needs to be displayed to the user? (OUTPUT) How many conditions are there in your problem statement? What are they? Does something need to happen if the condition(s) are not met? What type of conditional statement do you need? Solution in Java
View More

5.Part I. Reaction Paper Read and understand the text below. Follow outline in writing your reaction paper at least 250-750 ...

paper at least 250-750 words. 1. Introduction 2. Thesis Statement 3. Supporting details 4. Conclusion The Digital Divide: The Challenge of Technology and Equity (1) Information technology is influence the way many of us live and work today. We use the internet to look and apply for jobs, shop, conduct research, make airline reservations, and explore areas of interest. We use Email and internet to communicate instantaneously with friends and business associates around the world. Computers are commonplace in homes and the workplace. (2) Although the number of internet users is growing exponentially each year, most of the worlds population does not have access to computers of the internet. Only 6 percent of the population in the developing countries are connected to telephones. Although more than 94 percent of U.S households have telephones, only 56 percent have personal computers at home and 50 percent have internet access. The lack of what most of us would consider a basic communication necessity the telephone does not occur just in developing nations. On some Native American reservations only 60 percent of the residents have a telephone. The move to wireless connectivity may eliminate the need for telephone lines, but it does not remove the barrier to equipment costs. (3) Who has internet access? The digital divide between the populations who have access to the internet and information technology tools and those who dont is based on income, race, education, household type, and geographic location, but the gap between groups is narrowing. Eighty-five percent of households with an income over $75,000 have internet access, compared with less than 20 percent of the households with income under $15,000. Over 80 percent of college graduates use the internet as compared with 40 percent of high school completers and 13 percent of high school dropouts. Seventy-two percent of household with two parents have internet access; 40 percent of female, single parent households do. Differences are also found among households and families from different racial and ethnic groups. Fifty-five percent of white households, 31 percent of black households, 32 percent of Latino households, 68 percent of Asian or Pacific Islander households, and 39 percent of American Indian, Eskimos, or Aleut households have access to the internet. The number of internet users who are children under nine years old and persons over fifty has more than triple since 1997. Households in inner cities are less likely to have computers and internet access than those in urban and rural areas, but the differences are no more than 6 percent. (4) Another problem that exacerbates these disparities is that African-American, Latinos, and Native Americans hold few of the jobs in information technology. Women about 20 percent of these jobs and receiving fewer than 30 percent of the Bachelors degrees in computer and information science. The result is that women and members of the most oppressed ethnic group are not eligible for the jobs with the highest salaries at graduation. Baccalaureate candidates with degree in computer science were offered the highest salaries of all new college graduates. (5) Do similar disparities exist in schools? Ninety-eight percent of schools in the country are wired with at least one internet connection. The number of classrooms with internet connection differs by the income level of students. Using the percentage of students who are eligible for free lunches at a school to determine income level, we see that the higher percentage of the schools with more affluent students have wired classrooms than those with high concentrations of low-income students. (6) Access to computers and the internet will be important in reducing disparities between groups. It will require higher equality across diverse groups whose members develop knowledge and skills in computer and information technologies. The field today is overrepresented by white males. If computers and the internet are to be used to promote equality, they have to become accessible to schools cannot currently afford the equipment which needs to be updated regularly every three years or so. However, access alone is not enough; Students will have to be interacting with the technology in authentic settings. As technology has become a tool for learning in almost all courses taken by students, it will be seen as a means to an end rather than an end in itself. If it is used in culturally relevant ways, all students can benefit from its power.
View More

7.This first part of the Individual Research Project is an Outline and Annotated Bibliography. The Outline should provide a very brief ...

tline should provide a very brief overview of what you think you will do in the Policy Brief. The Annotated Bibliography requires you to summarize at least three peer-reviewed scholarly sources you will cite in the Policy Brief. This assignment is designed to get you thinking about your topic in a way that clearly anticipates the writing you will do for the Policy Brief. We want you to brainstorm and do a bit of research well in advance of the deadline for the Policy Brief and, most importantly, we want you to put your ideas down on paper so that we can give you feedback before writing the actual Policy Brief. In other words, we are asking you to submit an Outline and Annotated Bibliography so that we can help you write the best Policy Brief possible. Your Outline should be divided into the following five sections and should be written in complete sentences: I. Audience: Identify the audience you are addressing and consider what that audience is interested in. Who are you talking to in the Policy Brief and what does this suggest about the approach you should take? (75-100 words). II. Problem: State how you know the issue exists. What is the proof that students need to improve this skill? (125-150 words). III. Importance of Problem: Indicate why this problem matters. What are the consequences of the problem not being addressed? Why do students need to improve this skill? (100 words) IV. Solution: Identify your preferred solution. What solution will work in your context and why? (75-100 words) V. Alternative Solution: Identify at least one other possible solution. What other solutions did you consider? (75-100 words) The total length of the Outline should be between 450 and 550 words. When you submit your Outline, you must also include an Annotated Bibliography. An Annotated Bibliography is an alphabetical list of research sources that provides bibliographical data (the title, author, date, publisher, etc.) and a short summary or annotation of the source. Your Annotated Bibliography should contain a minimum of three scholarly or peer-reviewed sources, each with an accompanying annotation that is between 150 and 250 words long. The annotations must summarize the research question or thesis, research methodology, results, and conclusion. Annotations must include summaries and paraphrased information, NOT quotations. A good annotation will include two separate paragraphs: 1) a paragraph summarizing the research question or thesis, research methodology, results and conclusion; and 2) a paragraph commenting on why this source is relevant for your research.
View More

8.ssay 1: Person I Admire Purpose This essay assignment is the culmination of all your previous work in this module. You have ...

in this module. You have already engaged in the beginnings of the writing process of this essay. You have: Brainstormed ideas (see Chapter 11 in SMG) about the essay in the Discussion Board. Condensed your ideas down into manageable points around a working thesis. Displayed knowledge of Description essays from Learning Activities Drafted a Writing Activity (WA2) about this Description essay. Consulted with a writing tutor to find areas of strength and areas of improvement. Finally, you will now compose the final draft of a description essay that: contains a clear thesis identifies clear points to support your thesis engages in critical thought about the subject chosen uses 2-4 main ideas (points) that support your overall essay thesis allows you to expand on your chosen topic This essay assignment represents the first steps in writing any written essay for any academic course. The idea of thesis and support are the cornerstones of all essays. They represent the last part of the writing process. However, you may still revise your essay before final submission. This form of essay writing is the basis for all other academic writing pursuits. This skill translates to almost all careers that require critical thinking, critical reading, and responding in writing. Practicing "how to" write an essay carries over into any field's task of "what" you need to write. This skill will help with all formal writing. Task Write a 900-word essay, in MLA format, about a person or fictional character in whom you have an interest. Select a subject (person or fictional character you admire) Look to your Discussion (D1) and Writing Activity 2 (WA2) for your subject The person may be current or historical Some fictional characters have positive traits that can be identified. Select several (2-4) traits about the person or character that you admire and write about these. These will be the essay's main ideas. Biographical information should be used only to support claims. Your essay should focus on the traits you admire. Do not write a biography or tell a story. Example of what not to do: This person was born in 1979. They were born in middle Tennessee. They went to elementary school is 1985. They graduated in 1998. Instead, follow this example: This person was born in middle Tennessee. Entering elementary in school in 1985 was hard for them. They never felt that they belonged in kindergarten. However, they persevered, learning that school was a place for them to grow and be themselves. Focus on the "why" you admire them instead of a list of traits. In the above example, perseverance and learning to be themselves are the traits the writer of the essay admires. Organize your main ideas to establish the essay's pattern of organization. Your main ideas (traits you have chosen) need to be clearly organized. Decide in what order you wish to discuss these main ideas (traits) This organization needs to be presented in your introduction, preferably as the last sentence of your introduction in the thesis statement. Note: your thesis is generally the last sentence in your introduction, but it not a requirement. Follow this structure throughout the rest of the essay. Always check to see if your main ideas/topic sentences, in each paragraph, relate back to your thesis statement. Compose 5 well-developed paragraphs that support a clear thesis statement that is arguable. 5 paragraph minimum introduction paragraph introduces your essay and presents your thesis three body paragraphs Each paragraph contains one of your chosen admirable traits about your subject expressed in a topic sentence in your paragraph Each trait needs to transition to the next one in the next paragraph look to your chosen pattern of development conclusion paragraph rephrases your traits into one last paragraph reflects the earlier thesis, but with the knowledge of your traits expressed throughout the essay This essay is a basic form of an argument essay. The essay should make an argument such as that the person or character selected is worthy of admiration because of the traits selected. Criteria for Success A successful essay: Meets basic requirements of the assignment Has been written by the student submitting the essay, for this class, and for this semester, Does not contain plagiarism of any kind Academic dishonesty is an offense of the NSCC Student Code of Conduct, punishable by a failing grade or zero Has a clear thesis, main ideas, and pattern of organization Has been carefully edited and proofread to minimize grammatical and other editing errors These can be remedied by editing and with Writing Tutor visits and peer reviewing Follows MLA style and guidelines (spacing, indent, margins, etc. ) The essay will be graded with the Grading Rubric for Essays. Please familiarize yourself with this rubric before you submit your essay. Here is the condensed version of the rubric:
View More

1.AU MAT 120 Systems of Linear Equations and Inequalities Discussion

mathematicsalgebra Physics