Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

## Problem 1.(2 points) ## Using the vector x below, divide every element in ## an even index by two, without modifying the elements in

## Problem 1.(2 points) ## Using the vector x below, divide every element in ## an even index by two, without modifying the elements in odd indices. ## Complete the problem using one line only. ## If you exceeded the one line requirement but complete the code successfully, you will only earn half of the points. ## Hint you do not need a loop. This will work with a multiplication. x <- 1:10 ## BEGIN YOUR CODE HERE ## ## END YOUR CODE HERE ## ## ------------------------------------------------------------------------ ##Problem 2 (2 points) ##Repeat problem 1 but make your one line general enough that it works regardless of vector length. ##Hint you may want to use an 'if' and 'else' and note they can still be in one line. x <- 1:10 ##Begin your code here ##End your code here x x <- 1:13 ##Insert your same code here ##End your code here x

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Murach's SQL Server 2012 For Developers

Authors: Bryan Syverson, Joel Murach, Mike Murach

1st Edition

1890774693, 9781890774691

More Books

Students also viewed these Databases questions

Question

What is the relationship between diversity, inclusion, and equity?

Answered: 1 week ago