FannoFlow
Followers: 0 Following: 0
Aerospace Engineer | Former developer on the Aerospace Toolbox and Blockset | Current Autonomous Vehicle Software Engineer
Programming Languages:
Python, C++, C, MATLAB, Arduino
Spoken Languages:
English, French
Python, C++, C, MATLAB, Arduino
Spoken Languages:
English, French
Feeds
已回答
Selecting or setting hatching patterns?
Not a hatch fill, but the aerospace toolbox released the boundaryline function which will apply a hatch to a drawn line! https:...
Selecting or setting hatching patterns?
Not a hatch fill, but the aerospace toolbox released the boundaryline function which will apply a hatch to a drawn line! https:...
1 year 前 | 0
已回答
How to make high quality hatched figurest?
Check out the new boundaryline function ! https://www.mathworks.com/help/aerotbx/ug/boundaryline.html
How to make high quality hatched figurest?
Check out the new boundaryline function ! https://www.mathworks.com/help/aerotbx/ug/boundaryline.html
1 year 前 | 0
已回答
calculating the average of a column of a csv file with specified steps and saving it in a new csv file
read table to read the CSV as a table: https://www.mathworks.com/help/matlab/ref/readtable.html use mean to calculate the mean...
calculating the average of a column of a csv file with specified steps and saving it in a new csv file
read table to read the CSV as a table: https://www.mathworks.com/help/matlab/ref/readtable.html use mean to calculate the mean...
1 year 前 | 0
已回答
Dropdown and another buttons not working Ubuntu 22.04.02 LTS - Matlab R2023a
This might be related to this bug: https://www.mathworks.com/support/bugreports/1797911 Try "Change the window focus mode to...
Dropdown and another buttons not working Ubuntu 22.04.02 LTS - Matlab R2023a
This might be related to this bug: https://www.mathworks.com/support/bugreports/1797911 Try "Change the window focus mode to...
1 year 前 | 3
| 已接受
已回答
How to count the number of the rank in each column of a matrix.
m = [ 1 2 3; 2 3 1; 2 1 3; 3 1 2; 1 3 2] c = squeeze(sum(m == permute(1:3,[3,1,2]), 1))
How to count the number of the rank in each column of a matrix.
m = [ 1 2 3; 2 3 1; 2 1 3; 3 1 2; 1 3 2] c = squeeze(sum(m == permute(1:3,[3,1,2]), 1))
1 year 前 | 0
| 已接受
已回答
Read/Write CSV for Code Generation
To my knowledge, this does not exist. And more specifically, I don't know how it could exist. The internal data of a csv could...
Read/Write CSV for Code Generation
To my knowledge, this does not exist. And more specifically, I don't know how it could exist. The internal data of a csv could...
1 year 前 | 0
| 已接受
已回答
Organization of Object Oriented Code
Here is how I would recommend you create the folder structure: +Package/+Foo/@Foo/Foo.m +Package/+Foo/@Bar/Bar.m Foo.m: cl...
Organization of Object Oriented Code
Here is how I would recommend you create the folder structure: +Package/+Foo/@Foo/Foo.m +Package/+Foo/@Bar/Bar.m Foo.m: cl...
1 year 前 | 0
已回答
Change license from "student" to "home"
You can't change the license type. You'd have to purchase a new home license.
Change license from "student" to "home"
You can't change the license type. You'd have to purchase a new home license.
1 year 前 | 0
| 已接受
已回答
Derivative of state '1' in block 'X/Y/Integrator' at time 0.0 is not finite.
You can see the error in the signal right above that error message [NaN; 3; 0] You have a signal that is not finite (NaN) tha...
Derivative of state '1' in block 'X/Y/Integrator' at time 0.0 is not finite.
You can see the error in the signal right above that error message [NaN; 3; 0] You have a signal that is not finite (NaN) tha...
1 year 前 | 0
已解决
persistant sum
There will be 9 tests for this problem. In each test you will be provided with 2 integers n=[n1,n2], where n2 is equal to t...
1 year 前
已回答
'error: invalid use of incomplete type' when linking MatLab to C++
It looks like std::future is an incomplete type, It looks like MinGW does not fully support C++11 features (future, thread, asy...
'error: invalid use of incomplete type' when linking MatLab to C++
It looks like std::future is an incomplete type, It looks like MinGW does not fully support C++11 features (future, thread, asy...
1 year 前 | 0
已回答
Equivalent of ctrl+D but at subsystem level
Use model references! Then you can even do parallel model reference builds to speed up compile time. There is no way to compi...
Equivalent of ctrl+D but at subsystem level
Use model references! Then you can even do parallel model reference builds to speed up compile time. There is no way to compi...
1 year 前 | 0
已回答
How to prevent rounding number
Your data is still there, its just not printing out the full precision. See also: https://www.mathworks.com/matlabcentral/answ...
How to prevent rounding number
Your data is still there, its just not printing out the full precision. See also: https://www.mathworks.com/matlabcentral/answ...
1 year 前 | 1
已回答
Failed to find 'aerolib6dof2/6DoF (Euler Angles)/transform to Inertial axes ' in library
Looks like an internal library used by that block can no longer be found. your matlab path might need resetting, or perhaps the ...
Failed to find 'aerolib6dof2/6DoF (Euler Angles)/transform to Inertial axes ' in library
Looks like an internal library used by that block can no longer be found. your matlab path might need resetting, or perhaps the ...
1 year 前 | 0
已回答
How to Write a DATCOM input file in MATLAB?
There is no built-in method to write a DATCOM input file. but you're more than welcome to create a TS ticket for a feature reque...
How to Write a DATCOM input file in MATLAB?
There is no built-in method to write a DATCOM input file. but you're more than welcome to create a TS ticket for a feature reque...
1 year 前 | 0
已回答
Why am I getting warnings while importing DATCOM via datcomimport function?
This likely means that There are errors in your input / output file, resulting in a bad output file. You are using an unsuppor...
Why am I getting warnings while importing DATCOM via datcomimport function?
This likely means that There are errors in your input / output file, resulting in a bad output file. You are using an unsuppor...
1 year 前 | 0
已解决
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...
3 years 前
已解决
Find the maximum number of decimal places in a set of numbers
Given a vector or matrix of values, calculate the maximum number of decimal places within the input. Trailing zeros do not coun...
3 years 前
已解决
Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...
8 years 前
提问
Connect Phone to Matlab using USB or Bluetooth
Hey guys, Does anyone know of a way to collect GPS data from a phone using a USB cord or Bluetooth? I am trying to collec...
8 years 前 | 1 个回答 | 0
1
个回答提问
Optimize clustering with specific number of elements per cluster
Okay, so I've been at this problem for a couple weeks now and I seem to have hit a snag. The idea is this to take a group of...
8 years 前 | 0 个回答 | 1
0
个回答已回答
Why 'solve' function does not work with me
Was the error that it couldn't find an explicit solution? If so, thats because when it tried so solve, it simply couldn't find a...
Why 'solve' function does not work with me
Was the error that it couldn't find an explicit solution? If so, thats because when it tried so solve, it simply couldn't find a...
8 years 前 | 0
| 已接受
提问
How can I get Matlab Compiler?
I've been looking to get Matlab Compiler to compile some of my code that I've written into other formats such as C++ or Java. Ho...
8 years 前 | 2 个回答 | 0