Community Profile

photo

Zachary Holmes


Active since 2015

Followers: 0   Following: 0

Statistics

  • Thankful Level 1

View badges

Feeds

View by

Question


Converting arrayfun to loop
So in this code, function cipher_text = vigenere_cipher(origionalText,key) Array = Operator; key = lower(key)...

7 years ago | 1 answer | 0

1

answer

Question


Is there a function for inverting the 'reshape' command?
For my rail fence cipher, i obtain the correct output. But am wondering if there is a simple command to decipher the output? ...

7 years ago | 0 answers | 0

0

answers

Question


Rail Fence Encryption function
Just wondering how i would do a rail fence encryption function. Unsure on the process. for an understanding of the code plea...

7 years ago | 1 answer | 0

1

answer

Question


write a Matlab script that asks a group of up to 40 members to enter their height (in cm) and their weight (in kg).
It should work like this: Prompt the user to enter the two values. • Read in the input from the user, if any of the input valu...

8 years ago | 1 answer | 0

1

answer

Question


Geometric series that halves but prints first 10 elements i.e. 1/2,1/4....,1/1028
My solution is: for i=1:10 GS(i)=1/(2)^2; fprintf('GS is: ',GS(i)) end however it only prints 1/4. Ho...

8 years ago | 2 answers | 0

2

answers

Question


Hey People :) Im trying to using a for loop to create and print an array of a Geometric Serise that stores the first 10 terms of the sequence that halves each time i.e. {1/2, 1/4, 1/8, 1/16, ... 1/1024 }
My method obviously is to use a for loop but my problem is printing the array. Could somebody please write a script to help m...

8 years ago | 2 answers | 0

2

answers

Question


Hey people :) How would i write a Matlab script that asks a group of up to 40 members to enter their height (in cm) and their weight (in kg)?
i have attempted the question but i haven't made any progress. My approach was to use a for loop which looped through entrie...

8 years ago | 2 answers | 0

2

answers

Question


Briefly explain two main differences between writing MATLAB code as a user-defined function compared with just writing a script file?
So im not sure about this one. Is it to do with the different input streams of a script to a function? Please help thanks!!...

8 years ago | 1 answer | 0

1

answer

Question


So i Know how logical indexing is converted to loops, however this one gets me. Could some one please help!!
So the Question is: Write MATLAB code using an iterative (or programming) approach to repli- cate the calculation done in the s...

8 years ago | 1 answer | 0

1

answer

Question


Am i correct with my conversion of a Logical indexing to a for loop?
Logical indexing is: T ( T > 10) = 10; My Loop is: for (T>10) T = 10? Also how could i do a while loop? ...

8 years ago | 2 answers | 0

2

answers

Question


Write MATLAB code to create and print a vector GS that stores the first 10 terms of the geometric sequence that halves each time: {1/2, 1/4, 1/8, 1/16, ... 1/1024 }
this is what i have done but it is wrong Initial=input('Enter initial value: ') for i =1:10 y(i)=(Initial)*(0.5) ...

8 years ago | 3 answers | 0

3

answers

Question


The initialisation of this matrix which the colon operator
if my matrix is: B = [ 0 4 8 12 16 20 24 28 32 36 40] would the correct initialisation be: B=0:4:20??

8 years ago | 1 answer | 0

1

answer

Question


I'm confused to how this conversion works for a for to while loop
If the for loop is for i=2:3:20 disp(i); end Would the while loop be: i=2 while (i<20)...

8 years ago | 1 answer | 0

1

answer

Question


For loop to while loop
Re-write this code so that it uses while-loop instead of the for-loofor i=2:3:20 disp(i); end

8 years ago | 0 answers | 0

0

answers

Question


User defined compared to script file
Briefly explain two main differences between writing MATLAB code as a user-defined function compared with just writing a script ...

8 years ago | 0 answers | 0

0

answers

Question


Matlab Vs C programming
What happens if you run a Matlab program that indexes values beyond the end of an array? What happens if you index beyond the en...

8 years ago | 0 answers | 0

0

answers

Question


Initialising an array in matlab
use the colon operator (:) to initialise array B to the value shown below. B = [ 0 4 8 12 16 20 24 28 32 36 40]

8 years ago | 0 answers | 0

0

answers

Question


Logical indexing to Loop
Given a vector T, write a loop in Matlab that is equivalent to the following command? T ( T > 10) = 10;

8 years ago | 0 answers | 0

0

answers

Question


Hey people, how would you solve this?
int temp, values[6] = {3, 4, 5, 1, 2, 8}; temp = *(values + 2);

8 years ago | 0 answers | 0

0

answers

Question


Not Matlab, But C, Hope you can still help!!
What is the value of temp after executing the code below? int temp, values[6] = {3, 4, 5, 1, 2, 8}; temp = *(values + 2)

8 years ago | 0 answers | 0

0

answers

Question


Hey guys! I need to find the low points
(a) You are to write a Matlab function called findLowPoints. The function takes in one parameter: a vector of real numbers (sup...

8 years ago | 2 answers | 0

2

answers