<< Prev Showing: 271-275 of 1044 Next >>
· 246-250 · 251-255 · 256-260 · 261-265 · 266-270 · 271-275 · 276-280 · 281-285 · 286-290 · 291-295 · 296-300 ·(See attached file for full problem description) --- This model is used to analyze the body's response to a bolus injection of this antibiotic: B(t) = B0e(-k*t) Using this model, and data provided for the average plasma concentration data in ug/ml with time in hours : a) perform linear regression on this penicillin clearance using the normal equations b) plot the concentration data and re-plot the log of the concentration data to show that it appears linear. c) Determine initial concentration, B0, and elimination rate constant, k Concentration (ug/ml) Time (min) 89 22 60 44 30 88 15 132 7 176 a) for linear regression ln( B ) = ln( B0 )- Kt I'm not sure how to use... click for more
Subject:
Computer Science
Topic:
Other
Posting ID:
49820
OTA ID:
105035
MATLAB polyfit find P50 in mmHg
How do I convert back to find P50 in mmHg and n given the best-fit? function po2() %This function tests the linearty of tetrameric bovine hemoglobin binding %to oxygen as a possible blood substitute for monomeric hemoglobin. An %oxygen dissociation curve is created, and a linear regression is performed %on the experimental data using the built in Matlab function, polyfit. A %best-fit model is plotted with the data to show that linearty exists. % this is the data provided pO2 = [ 10 20 30 40 50 60 70 80 90 100 110 120 ] ; Y = [0.18 0.4 0.65 0.8 0.87 0.92 0.94 0.95 0.95 0.96 0.96 0.97 ] ; % Test the linearity according to Henry's Law and the Hill equation %ln(Y/(1-Y)... click for more
Subject:
Computer Science
Topic:
Other
Posting ID:
49831
OTA ID:
105035
Matlab script for statistics and histogram
(See attached file for full problem description) Any help is greatly appreciated, as the script I wrote does not seem to be deciphering between the two sets of data. --- Write a Matlab script using the "randn" command to generate a vector of 10,000 random numbers that are normally distributed around zero, with a variance of 1. Use the "hist" command to plot a histogram of these data, specifying 50 bins. Use "find" command to determine what percentage of the data points lie within 1 standard deviation of the mean (which is zero). Redo this analysis for a smaller set of data (20 points) and reduce number of bins in the histogram. ---
Subject:
Computer Science
Topic:
Other
Posting ID:
50135
OTA ID:
105035
Write a program that reads a social security number written as contiguous digits (for instance, 509435456), uses the charAt method to obtain each character and then prints each digit on a separate line followed by a colon and the digit printed the number of times equal to its value. Thus the output for 509435456 would be 5:55555 0: 9:999999999 4:4444 3:333 5:55555 4:4444 5:55555 6:666666 Hint: Use a char variable,e.g., index, for the inner loop control variable and write the inner loop as for(char index = '1'; index <= digit; index++) where digit is the char variable used to store the digit taken from the string.
Subject:
Computer Science
Topic:
Other
Posting ID:
50651
OTA ID:
104977
In Code3 there are (6) numbered items. The first four are "compiler errors." Include a separate Word document with your assignment and explain why each will produce a compiler error and what you would do to fix the problem. Explain what is happening in 5 and 6 and why this code will prevent a possible compiler error. // This program illustrates the use of Java datatypes. import java.io.*; import java.lang.*; public class Code3 { //begins Nums public static void main(String args[]) { int x= 5; int y= 2; int z = 0; long a, b = 0; double d= 5.12345; byte c = 0; //float e = 34.2; compiler error: (1) float e = 34.2F; //or float e = (float) 34.2; short f,... click for more
Subject:
Computer Science
Topic:
Other
Posting ID:
50816
OTA ID:
103644
<< Prev Showing: 271-275 of 1044 Next >>
· 1-5 · 6-10 · 11-15 · 16-20 · 21-25 · 26-30 · 31-35 · 36-40 · 41-45 · 46-50 · 51-55 · 56-60 · 61-65 · 66-70 · 71-75 · 76-80 · 81-85 · 86-90 · 91-95 · 96-100 · 101-105 · 106-110 · 111-115 · 116-120 · 121-125 · 126-130 · 131-135 · 136-140 · 141-145 · 146-150 · 151-155 · 156-160 · 161-165 · 166-170 · 171-175 · 176-180 · 181-185 · 186-190 · 191-195 · 196-200 · 201-205 · 206-210 · 211-215 · 216-220 · 221-225 · 226-230 · 231-235 · 236-240 · 241-245 · 246-250 · 251-255 · 256-260 · 261-265 · 266-270 · 271-275 · 276-280 · 281-285 · 286-290 · 291-295 · 296-300 · 301-305 · 306-310 · 311-315 · 316-320 · 321-325 · 326-330 · 331-335 · 336-340 · 341-345 · 346-350 · 351-355 · 356-360 · 361-365 · 366-370 · 371-375 · 376-380 · 381-385 · 386-390 · 391-395 · 396-400 · 401-405 · 406-410 · 411-415 · 416-420 · 421-425 · 426-430 · 431-435 · 436-440 · 441-445 · 446-450 · 451-455 · 456-460 · 461-465 · 466-470 · 471-475 · 476-480 · 481-485 · 486-490 · 491-495 · 496-500 · 501-505 · 506-510 · 511-515 · 516-520 · 521-525 · 526-530 · 531-535 · 536-540 · 541-545 · 546-550 · 551-555 · 556-560 · 561-565 · 566-570 · 571-575 · 576-580 · 581-585 · 586-590 · 591-595 · 596-600 · 601-605 · 606-610 · 611-615 · 616-620 · 621-625 · 626-630 · 631-635 · 636-640 · 641-645 · 646-650 · 651-655 · 656-660 · 661-665 · 666-670 · 671-675 · 676-680 · 681-685 · 686-690 · 691-695 · 696-700 · 701-705 · 706-710 · 711-715 · 716-720 · 721-725 · 726-730 · 731-735 · 736-740 · 741-745 · 746-750 · 751-755 · 756-760 · 761-765 · 766-770 · 771-775 · 776-780 · 781-785 · 786-790 · 791-795 · 796-800 · 801-805 · 806-810 · 811-815 · 816-820 · 821-825 · 826-830 · 831-835 · 836-840 · 841-845 · 846-850 · 851-855 · 856-860 · 861-865 · 866-870 · 871-875 · 876-880 · 881-885 · 886-890 · 891-895 · 896-900 · 901-905 · 906-910 · 911-915 · 916-920 · 921-925 · 926-930 · 931-935 · 936-940 · 941-945 · 946-950 · 951-955 · 956-960 · 961-965 · 966-970 · 971-975 · 976-980 · 981-985 · 986-990 · 991-995 · 996-1000 · 1001-1005 · 1006-1010 · 1011-1015 · 1016-1020 · 1021-1025 · 1026-1030 · 1031-1035 · 1036-1040 · 1041-1044 ·Page generated in 0.1052 seconds