Risposto
how to find the answer of:
Use the inverse of tan: atan B=atan(log10(50)/exp(0.53))

quasi 5 anni fa | 0

| accettato

Risposto
How to create an independent loop?
If you want something to be independent, you need to use a function: for n=1:200 my_fun(n,struct_with_your_other_variables...

quasi 5 anni fa | 1

| accettato

Risposto
How to unstructure the structure data?
If you use the normal dot indexing with a struct array, that will generate a comma separated list. You can put that between bra...

quasi 5 anni fa | 1

| accettato

Risposto
find function using wildcards
You can use the patterns introduced in R2020b: str={'/* GeoForschungsZentrum Potsdam ...

quasi 5 anni fa | 1

| accettato

Risposto
How can I use fprintf to print matrix by column?
fprintf tranverses the input in a column-major order. If you want to change that, you can't, so you will have to flip the array ...

quasi 5 anni fa | 0

Risposto
I wrote this code and it didn't work and its gave me " Unrecognized function or variable 'seq' " error , What I can do to sole this error??
Apparently your code doesn't guarantee the creation of the seq variable. Since it only occurs in block starting with Test=='T', ...

quasi 5 anni fa | 0

Risposto
How to check for data normality using kstest?
If you want to test if your data is from a standard normal distribution you should not change it before calling kstest. If yo...

quasi 5 anni fa | 0

| accettato

Risposto
How can I mouse pick up and move
You can do this with the WindowButtonDownFcn (or the equivalent for uifigures: ButtonDownFcn). Inside that callback you can ret...

quasi 5 anni fa | 0

Risposto
How can i read in a .txt file without the first column gets saved?
I prefer not to mix tasks. I first read my file, then I do the processing. It is generally a lot easier to remove parts of char ...

quasi 5 anni fa | 0

| accettato

Risposto
Mathmatica saving Matlab files as Wolfram Mathmatica Package files
Your files have not changed, only the description your OS displays. You should look up a guide for your specific OS. On windo...

quasi 5 anni fa | 0

| accettato

Risposto
graph with two formulas
You probably want the errorbar function: x = 1:10:100; y = [20 30 45 40 60 65 80 75 95 90]; err = 8*ones(size(y)); errorbar(...

quasi 5 anni fa | 0

| accettato

Risolto


The Piggy Bank Problem
Given a cylindrical piggy bank with radius g and height y, return the bank's volume. [ g is first input argument.] Bonus though...

quasi 5 anni fa

Risposto
Pressure drop script is not running
If you have problems with a function, you should really check the documentation. The input function does not work like you expe...

quasi 5 anni fa | 0

| accettato

Risposto
How to extract common points from a csv file with same Id?
The easiest way is probably with histcounts (or histc on old releases).

quasi 5 anni fa | 0

Risposto
Is the Raspberry pi MATLAB and SIMULINK support package compatible with the raspberry pi 400?
The Pi 400 is identical to the Pi 4 in most relevant aspects, so I think you can expect it to work.

quasi 5 anni fa | 0

Risposto
How to add 3th moving ball
If you replace numbered variables with arrays you can use simple loops with indexing. With your current setup you will have to c...

quasi 5 anni fa | 0

Risposto
Replacing for loop in the function
What you want is not possible. Depending on what f is there might be ways to avoid the loop and use vector-operations instead, b...

quasi 5 anni fa | 1

Risposto
Why do I get the error '??? Output argument ‹variable› (and maybe others) not assigned during call to ‹function›.' ?
The error is in getgamspath. Consider this function: function [output1,output2]=IncorrectFunction output2=1; end Running it ...

quasi 5 anni fa | 0

Risposto
how to define and write the first line of a function while one of the inputs are a matrix with strings as entries (strings are defined in the body of function)
You can only have variable names in your function signature, not any indexing. function PS=level2(NOH,NOC,tetta,A)

quasi 5 anni fa | 0

| accettato

Risposto
How to load multiple .mat files containing timetables into the workspace and concatenate them vertically
If you use struct2cell (either inside your loop or in a cellfun) you can extract the data itself. Then you should be able to use...

quasi 5 anni fa | 0

Risposto
what is the alternative of cd in .executable app ?
You can use && to execute another command if the first one completes successfully: doscmd = [... 'cd /d "' pathTargetFiles...

quasi 5 anni fa | 0

| accettato

Risposto
Getting wrong results while calling a function.
Some numbers cannot be represented exactly in binary. You will either need to round both numbers to make sure they have the exac...

quasi 5 anni fa | 1

Risposto
How to access recent comments in the FileExchange?
In the activity feed you can select the 'Files' section, where you can see only the FEX-related activities. You do need to remem...

quasi 5 anni fa | 1

| accettato

Risposto
How the number of times n of the patchwork increase?
You don't check if your image is actually large enough to allow 6000 unique indices. You should either reduce the number of samp...

quasi 5 anni fa | 1

| accettato

Risposto
Plot median values in a bin (binned plot)
You can try <https://www.mathworks.com/matlabcentral/fileexchange/98239-gridbin gridbin>. I haven't used it myself, but it se...

quasi 5 anni fa | 0

| accettato

Risposto
Compiler Toolbox - Generate Portable versions
To my knowledge this is only possible if all target machines have Matlab installed (or the MCR). An alternative would be to u...

quasi 5 anni fa | 0

Risposto
lsqnonlin for 2 independent variables
You should merge x and y to a single variable (i.e. a 2 element vector). That way you can do this with a single call to lsqnonli...

quasi 5 anni fa | 0

| accettato

Risposto
Standalone App installation folder
I personally use this function to store persistent files regardless of OS and runtime version: <https://www.mathworks.com/matlab...

quasi 5 anni fa | 0

Risposto
Download files from https server using username and password
You should be able to use websave. You can provide a username and password in weboptions: weboptions

quasi 5 anni fa | 2

| accettato

Carica altro