photo

S. Walter


Reaction Systems, Inc.

Last seen: etwa 2 Jahre vor Aktiv seit 2020

Followers: 0   Following: 0

Aerospace engineer focused on propulsion research and development. Background in fluid dynamics, inlet design, turbomachinery.

Programming Languages:
Python, C++, Java, R, MATLAB, HTML, Fortran, Visual Basic
Spoken Languages:
English, French, German

Statistik

All
MATLAB Answers

0 Fragen
8 Antworten

Cody

0 Probleme
125 Lösungen

RANG
2.533
of 300.392

REPUTATION
24

BEITRÄGE
0 Fragen
8 Antworten

ANTWORTZUSTIMMUNG
0.00%

ERHALTENE STIMMEN
4

RANG
 of 20.933

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG
1.597
of 168.335

BEITRÄGE
0 Probleme
125 Lösungen

PUNKTESTAND
1.654

ANZAHL DER ABZEICHEN
10

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • First Review
  • Speed Demon
  • Knowledgeable Level 2
  • MATLAB Central Treasure Hunt Finisher
  • CUP Challenge Master
  • Introduction to MATLAB Master
  • Commenter
  • Promoter
  • Community Group Solver
  • Solver
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
How I can extract certain range of value from workspace?
You have a matrix A: A = rand(100,100); You want only the 5th through the 10th elements, you can do that using the colon opera...

fast 5 Jahre vor | 0

Beantwortet
Else if statement imbedded in a for loop
If you want your for loop to pick only one item from the Tp vector, you have to iterate Tp inside your for loop. Thus: if Tp<=...

fast 5 Jahre vor | 0

Beantwortet
How to save each image generated in a for loop?
You can print the image: print('filename','-dpng','-r300') where '-dpng' can be set to whatever format you want (check out the...

fast 5 Jahre vor | 0

Beantwortet
Last else if graph not plotting
I tried the following: % Clear the command window and close the figures clc close all % Make a color vector for plots col...

fast 5 Jahre vor | 1

| akzeptiert

Gelöst


Convert given decimal number to binary number.
Convert given decimal number to binary number. Example x=10, then answer must be 1010.

etwa 5 Jahre vor

Gelöst


Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

etwa 5 Jahre vor

Gelöst


Cell joiner
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...

etwa 5 Jahre vor

Gelöst


Perimeter of a semicircle
Given the diameter d, find the perimeter of a semicircle

etwa 5 Jahre vor

Gelöst


Approximation of Pi (vector inputs)
Pi (divided by 4) can be approximated by the following infinite series: pi/4 = 1 - 1/3 + 1/5 - 1/7 + ... For a given numbe...

etwa 5 Jahre vor

Gelöst


Approximation of Pi
Pi (divided by 4) can be approximated by the following infinite series: pi/4 = 1 - 1/3 + 1/5 - 1/7 + ... For a given numbe...

etwa 5 Jahre vor

Gelöst


Pi Estimate 1
Estimate Pi as described in the following link: <http://www.people.virginia.edu/~teh1m/cody/Pi_estimation1.pdf>

etwa 5 Jahre vor

Gelöst


Volume and area of a sphere
Input(r) - radius Output([v,s]) - volume and area

etwa 5 Jahre vor

Gelöst


Spherical Volume
Calculate the volume of a sphere.

etwa 5 Jahre vor

Gelöst


Volume Pillar
Calculate the volume of a pillar with radius l and heigth ar.

etwa 5 Jahre vor

Gelöst


Convert radians to degrees
Given input in radians, output to degrees

etwa 5 Jahre vor

Gelöst


Calculate area of sector
A=function(r,seta) r is radius of sector, seta is angle of sector, and A is its area. Area of sector A is defined as 0.5*(r^2...

etwa 5 Jahre vor

Gelöst


radius of a spherical planet
You just measured its surface area, that is the input.

etwa 5 Jahre vor

Gelöst


Who has power to do everything in this world?
There is only one person who is older than this universe. He is Indian version of Chuck Norris.

etwa 5 Jahre vor

Gelöst


Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...

etwa 5 Jahre vor

Gelöst


Remove all the consonants
Remove all the consonants in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill'; Output s2 is 'a ...

etwa 5 Jahre vor

Gelöst


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

etwa 5 Jahre vor

Gelöst


Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

etwa 5 Jahre vor

Gelöst


Is the input divisible by 3?
Return true if the input is divisible by 3 and false if not.

etwa 5 Jahre vor

Gelöst


Back to basics 15 - classes
Covering some basic topics I haven't seen elsewhere on Cody. Return the class of the input variable.

etwa 5 Jahre vor

Gelöst


Simple equation: Annual salary
Given an hourly wage, compute an annual salary by multiplying the wage times 40 and times 50, because salary = wage x 40 hours/w...

etwa 5 Jahre vor

Gelöst


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

etwa 5 Jahre vor

Gelöst


How to calculate the length of a triangle's side given two angles and one side
You are given a triangle with angles alpha, beta and gamma and sides a opposite alpha, b opposite beta and c opposite gamma. ...

etwa 5 Jahre vor

Gelöst


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

etwa 5 Jahre vor

Gelöst


Find terms in the Connell sequence

etwa 5 Jahre vor

Mehr laden