Respondida
Problems with the 'null' variable in Simbiology
Hi David, The problem is with the units on the rate constant for the reaction null -> T. Let's say you have the reaction rate...

casi 14 años hace | 0

Respondida
does anybody please explain how to use 'tomlab' in Simbiology?
Hi Emran, TOMLAB and SimBiology are two separate products and are not integrated. Furthermore, TOMLAB is used for *optimizing...

casi 14 años hace | 0

Respondida
Systems Biology Toolbox vs. SimBiology
I haven't really used the Systems Biology Toolbox, but I am a developer on the SimBiology team so I can add a few more details a...

casi 14 años hace | 0

| aceptada

Respondida
How to call a SimBiology function from Java
I'm one of the developers on the SimBiology team. The error you are seeing is typical of what happens when a function isn't avai...

alrededor de 14 años hace | 0

| aceptada

Respondida
Simbiology problem
Hi Asterio, Regarding your second problem with the "group" tab: The short answer is that you should leave "group" empty, b...

alrededor de 14 años hace | 0

Respondida
Simbiology problem
Hi Asterio, I'm one of the developers on the SimBiology team. I think you may have encountered a bug that happens when a para...

más de 14 años hace | 0

| aceptada

Resuelto


Function composition - harder
Write a function that accepts an arbitrary number of function handles f_1, f_2, ..., f_n and returns the composition h. That is,...

más de 14 años hace

Respondida
how to perform clinical trial task in Simbiology
Hi Rui, This is a custom task written by the instructor to demonstrate how SimBiology allows you to write custom tasks using ...

más de 14 años hace | 0

Respondida
Simulation data for :SimBiology model for PK/PD of anticancer drugs
I suggest contacting the authors of the article. If you don't hear back from them, you can always manually extract the data from...

más de 14 años hace | 0

Respondida
problem with optimset not being recognized, R2012a
I would first ensure that optimset.m got installed. Based on the location of your R2012a installation, look for the file at |C:\...

más de 14 años hace | 6

Respondida
incorporating surface receptor binding into enzyme kinetics model
When you say that the substrate is in equilibrium with the receptors, I infer that the receptor-ligand interactions are happenin...

más de 14 años hace | 0

Resuelto


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

más de 14 años hace

Resuelto


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

más de 14 años hace

Resuelto


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

más de 14 años hace

Resuelto


Pangrams!
A pangram, or holoalphabetic sentence, is a sentence using every letter of the alphabet at least once. Example: Input s ...

más de 14 años hace

Resuelto


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

más de 14 años hace

Resuelto


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

más de 14 años hace

Resuelto


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

más de 14 años hace

Resuelto


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

más de 14 años hace

Resuelto


Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...

más de 14 años hace

Resuelto


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

más de 14 años hace

Resuelto


Add two numbers
Given a and b, return the sum a+b in c.

más de 14 años hace

Resuelto


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

más de 14 años hace

Resuelto


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

más de 14 años hace

Resuelto


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

más de 14 años hace

Problema


Filter values in a vector
Cody often benefits from a functional style of programming. For example, your score is often better when you compose multiple fu...

más de 14 años hace | 0 | 76 solvers

Resuelto


Filter values in a vector
Cody often benefits from a functional style of programming. For example, your score is often better when you compose multiple fu...

más de 14 años hace

Problema


Create a dictionary
The goal is to write a function that returns a dictionary from a list of words or phrases and their definitions. Here is an exam...

más de 14 años hace | 4 | 83 solvers

Resuelto


Create a dictionary
The goal is to write a function that returns a dictionary from a list of words or phrases and their definitions. Here is an exam...

más de 14 años hace

Resuelto


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

más de 14 años hace

Cargar más